This commit is contained in:
adrinr 2023-03-20 16:12:55 +00:00
parent 5dbbdf3f82
commit beb4118582
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ export const useAuditLogs = () => {
} }
export const useScimIntegration = () => { export const useScimIntegration = () => {
return useFeature(Feature.SCIM_INTEGRATION) return useFeature(Feature.SCIM)
} }
// QUOTAS // QUOTAS

View File

@ -5,5 +5,5 @@ export enum Feature {
AUDIT_LOGS = "auditLogs", AUDIT_LOGS = "auditLogs",
ENFORCEABLE_SSO = "enforceableSSO", ENFORCEABLE_SSO = "enforceableSSO",
BRANDING = "branding", BRANDING = "branding",
SCIM_INTEGRATION = "scimIntegration", SCIM = "scim",
} }