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.

12345678910111213
  1. export type SystemFeatures = {
  2. sso_enforced_for_signin: boolean
  3. sso_enforced_for_signin_protocol: string
  4. sso_enforced_for_web: boolean
  5. sso_enforced_for_web_protocol: string
  6. }
  7. export const defaultSystemFeatures: SystemFeatures = {
  8. sso_enforced_for_signin: false,
  9. sso_enforced_for_signin_protocol: '',
  10. sso_enforced_for_web: false,
  11. sso_enforced_for_web_protocol: '',
  12. }