You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

enterprise.ts 255B

123456789
  1. export type EnterpriseFeatures = {
  2. sso_enforced_for_signin: boolean
  3. sso_enforced_for_signin_protocol: string
  4. }
  5. export const defaultEnterpriseFeatures: EnterpriseFeatures = {
  6. sso_enforced_for_signin: false,
  7. sso_enforced_for_signin_protocol: '',
  8. }