Skip to content

Commit 11e5ada

Browse files
committed
revert(license): restore default on-prem feature flags to false
The dev overrides enabling enterprise features (rbac, subOrganization, samlSSO, oidcSSO, groups, enforceMfa, enforceGoogleSSO) were accidentally included. Revert to the original values from main. Made-with: Cursor
1 parent 18eed97 commit 11e5ada

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

backend/src/ee/services/license/license-fns.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,23 +68,23 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({
6868
secretVersioning: true,
6969
pitRecovery: false,
7070
ipAllowlisting: false,
71-
rbac: true,
71+
rbac: false,
7272
githubOrgSync: false,
7373
customRateLimits: false,
74-
subOrganization: true,
74+
subOrganization: false,
7575
customAlerts: false,
7676
secretAccessInsights: false,
7777
auditLogs: false,
7878
auditLogsRetentionDays: 0,
7979
auditLogStreams: false,
8080
auditLogStreamLimit: 3,
81-
samlSSO: true,
82-
enforceGoogleSSO: true,
81+
samlSSO: false,
82+
enforceGoogleSSO: false,
8383
hsm: false,
84-
oidcSSO: true,
84+
oidcSSO: false,
8585
scim: false,
8686
ldap: false,
87-
groups: true,
87+
groups: false,
8888
status: null,
8989
trial_end: null,
9090
has_used_trial: true,
@@ -100,7 +100,7 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({
100100
},
101101
pkiEst: false,
102102
pkiAcme: false,
103-
enforceMfa: true,
103+
enforceMfa: false,
104104
projectTemplates: false,
105105
kmip: false,
106106
gateway: false,

0 commit comments

Comments
 (0)