mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
18 lines
371 B
TypeScript
18 lines
371 B
TypeScript
/**
|
|
* JaaS customer statuses which represent their account state.
|
|
*/
|
|
export const STATUSES = {
|
|
ACTIVE: 'ACTIVE',
|
|
BLOCKED: 'BLOCKED'
|
|
};
|
|
|
|
/**
|
|
* URL for displaying JaaS upgrade options.
|
|
*/
|
|
export const JAAS_UPGRADE_URL = 'https://jaas.8x8.vc/#/plan/upgrade';
|
|
|
|
/**
|
|
* The prefix for the vpaas tenant.
|
|
*/
|
|
export const VPAAS_TENANT_PREFIX = 'vpaas-magic-cookie-';
|