您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.ts 371B

1234567891011121314151617
  1. /**
  2. * JaaS customer statuses which represent their account state.
  3. */
  4. export const STATUSES = {
  5. ACTIVE: 'ACTIVE',
  6. BLOCKED: 'BLOCKED'
  7. };
  8. /**
  9. * URL for displaying JaaS upgrade options.
  10. */
  11. export const JAAS_UPGRADE_URL = 'https://jaas.8x8.vc/#/plan/upgrade';
  12. /**
  13. * The prefix for the vpaas tenant.
  14. */
  15. export const VPAAS_TENANT_PREFIX = 'vpaas-magic-cookie-';