feat: fixed license server changes in cloud

This commit is contained in:
=
2025-05-21 00:20:59 +05:30
parent 8f795100ea
commit 5ffe45eaf5
2 changed files with 3 additions and 3 deletions

View File

@@ -2,9 +2,9 @@ import axios, { AxiosError } from "axios";
import { getConfig } from "@app/lib/config/env";
import { request } from "@app/lib/config/request";
import { logger } from "@app/lib/logger";
import { TFeatureSet } from "./license-types";
import { logger } from "@app/lib/logger";
export const getDefaultOnPremFeatures = (): TFeatureSet => ({
_id: null,

View File

@@ -379,7 +379,7 @@ export const licenseServiceFactory = ({
message: `Organization with ID '${orgId}' not found`
});
}
if (instanceType !== InstanceType.OnPrem && instanceType !== InstanceType.EnterpriseOnPremOffline) {
if (instanceType === InstanceType.Cloud) {
const { data } = await licenseServerCloudApi.request.get(
`/api/license-server/v1/customers/${organization.customerId}/cloud-plan/billing`
);
@@ -413,7 +413,7 @@ export const licenseServiceFactory = ({
const projects = await projectDAL.find({ orgId });
const projectCount = projects.length;
if (instanceType !== InstanceType.OnPrem && instanceType !== InstanceType.EnterpriseOnPremOffline) {
if (instanceType === InstanceType.Cloud) {
const { data } = await licenseServerCloudApi.request.get<{
head: { name: string }[];
rows: { name: string; allowed: boolean }[];