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,
|
"resourceLimits": false,
|
||||||
"responseTimeMetricsFix": false,
|
"responseTimeMetricsFix": false,
|
||||||
"responseTimeWithAppNameKillSwitch": false,
|
"responseTimeWithAppNameKillSwitch": false,
|
||||||
"scimApi": false,
|
|
||||||
"showInactiveUsers": false,
|
"showInactiveUsers": false,
|
||||||
"signals": false,
|
"signals": false,
|
||||||
"strictSchemaValidation": false,
|
"strictSchemaValidation": false,
|
||||||
|
@ -728,7 +728,6 @@ export default class UserAdminController extends Controller {
|
|||||||
scimId,
|
scimId,
|
||||||
}: Pick<IUser, 'id' | 'scimId'>): Promise<void> {
|
}: Pick<IUser, 'id' | 'scimId'>): Promise<void> {
|
||||||
if (!this.isEnterprise) return;
|
if (!this.isEnterprise) return;
|
||||||
if (!this.flagResolver.isEnabled('scimApi')) return;
|
|
||||||
|
|
||||||
const isScimUser = await this.isScimUser({ id, scimId });
|
const isScimUser = await this.isScimUser({ id, scimId });
|
||||||
if (!isScimUser) return;
|
if (!isScimUser) return;
|
||||||
|
@ -49,7 +49,6 @@ export type IFlagKey =
|
|||||||
| 'disablePublishUnannouncedEvents'
|
| 'disablePublishUnannouncedEvents'
|
||||||
| 'outdatedSdksBanner'
|
| 'outdatedSdksBanner'
|
||||||
| 'responseTimeMetricsFix'
|
| 'responseTimeMetricsFix'
|
||||||
| 'scimApi'
|
|
||||||
| 'displayEdgeBanner'
|
| 'displayEdgeBanner'
|
||||||
| 'disableShowContextFieldSelectionValues'
|
| 'disableShowContextFieldSelectionValues'
|
||||||
| 'projectOverviewRefactorFeedback'
|
| 'projectOverviewRefactorFeedback'
|
||||||
@ -252,10 +251,6 @@ const flags: IFlags = {
|
|||||||
process.env.UNLEASH_EXPERIMENTAL_QUERY_MISSING_TOKENS,
|
process.env.UNLEASH_EXPERIMENTAL_QUERY_MISSING_TOKENS,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
scimApi: parseEnvVarBoolean(
|
|
||||||
process.env.UNLEASH_EXPERIMENTAL_SCIM_API,
|
|
||||||
false,
|
|
||||||
),
|
|
||||||
displayEdgeBanner: parseEnvVarBoolean(
|
displayEdgeBanner: parseEnvVarBoolean(
|
||||||
process.env.UNLEASH_EXPERIMENTAL_DISPLAY_EDGE_BANNER,
|
process.env.UNLEASH_EXPERIMENTAL_DISPLAY_EDGE_BANNER,
|
||||||
false,
|
false,
|
||||||
|
@ -35,7 +35,6 @@ beforeAll(async () => {
|
|||||||
experimental: {
|
experimental: {
|
||||||
flags: {
|
flags: {
|
||||||
strictSchemaValidation: true,
|
strictSchemaValidation: true,
|
||||||
scimApi: true,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user