Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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-';