mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
chore: remove scim api flag (#7780)
This commit is contained in:
parent
8786240ddf
commit
a507ca91a5
@ -155,7 +155,6 @@ exports[`should create default config 1`] = `
|
||||
"resourceLimits": false,
|
||||
"responseTimeMetricsFix": false,
|
||||
"responseTimeWithAppNameKillSwitch": false,
|
||||
"scimApi": false,
|
||||
"showInactiveUsers": false,
|
||||
"signals": false,
|
||||
"strictSchemaValidation": false,
|
||||
|
@ -728,7 +728,6 @@ export default class UserAdminController extends Controller {
|
||||
scimId,
|
||||
}: Pick<IUser, 'id' | 'scimId'>): Promise<void> {
|
||||
if (!this.isEnterprise) return;
|
||||
if (!this.flagResolver.isEnabled('scimApi')) return;
|
||||
|
||||
const isScimUser = await this.isScimUser({ id, scimId });
|
||||
if (!isScimUser) return;
|
||||
|
@ -49,7 +49,6 @@ export type IFlagKey =
|
||||
| 'disablePublishUnannouncedEvents'
|
||||
| 'outdatedSdksBanner'
|
||||
| 'responseTimeMetricsFix'
|
||||
| 'scimApi'
|
||||
| 'displayEdgeBanner'
|
||||
| 'disableShowContextFieldSelectionValues'
|
||||
| 'projectOverviewRefactorFeedback'
|
||||
@ -252,10 +251,6 @@ const flags: IFlags = {
|
||||
process.env.UNLEASH_EXPERIMENTAL_QUERY_MISSING_TOKENS,
|
||||
false,
|
||||
),
|
||||
scimApi: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_SCIM_API,
|
||||
false,
|
||||
),
|
||||
displayEdgeBanner: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_DISPLAY_EDGE_BANNER,
|
||||
false,
|
||||
|
@ -35,7 +35,6 @@ beforeAll(async () => {
|
||||
experimental: {
|
||||
flags: {
|
||||
strictSchemaValidation: true,
|
||||
scimApi: true,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user