diff --git a/backend/src/ee/services/license/license-fns.ts b/backend/src/ee/services/license/license-fns.ts index 126f86c41..fa67b72d1 100644 --- a/backend/src/ee/services/license/license-fns.ts +++ b/backend/src/ee/services/license/license-fns.ts @@ -32,11 +32,11 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({ oidcSSO: false, scim: false, ldap: false, - groups: true, + groups: false, status: null, trial_end: null, has_used_trial: true, - secretApproval: true, + secretApproval: false, secretRotation: true, caCrl: false, instanceUserManagement: false, diff --git a/backend/src/ee/services/license/license-types.ts b/backend/src/ee/services/license/license-types.ts index b41393b08..6e671c26f 100644 --- a/backend/src/ee/services/license/license-types.ts +++ b/backend/src/ee/services/license/license-types.ts @@ -49,11 +49,11 @@ export type TFeatureSet = { oidcSSO: false; scim: false; ldap: false; - groups: true; + groups: false; status: null; trial_end: null; has_used_trial: true; - secretApproval: true; + secretApproval: false; secretRotation: true; caCrl: false; instanceUserManagement: false;