2021-06-25 13:28:54 +00:00
|
|
|
/**
|
2021-11-04 21:10:43 +00:00
|
|
|
* JaaS customer statuses which represent their account state.
|
2021-06-25 13:28:54 +00:00
|
|
|
*/
|
|
|
|
export const STATUSES = {
|
|
|
|
ACTIVE: 'ACTIVE',
|
|
|
|
BLOCKED: 'BLOCKED'
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2021-11-04 21:10:43 +00:00
|
|
|
* URL for displaying JaaS upgrade options.
|
2021-06-25 13:28:54 +00:00
|
|
|
*/
|
|
|
|
export const JAAS_UPGRADE_URL = 'https://jaas.8x8.vc/#/plan/upgrade';
|
2021-07-20 08:58:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The prefix for the vpaas tenant.
|
|
|
|
*/
|
|
|
|
export const VPAAS_TENANT_PREFIX = 'vpaas-magic-cookie-';
|