20 lines
465 B
TypeScript
20 lines
465 B
TypeScript
export const tenantConfigConnection: string[] = [
|
|
"instanceName",
|
|
"googleMapsKey",
|
|
"emailVerificationEnabled",
|
|
"singleSessionPerUserEnabled",
|
|
"showRolesAndGroups",
|
|
"hideWatermark",
|
|
"userSessionTimeoutInMinutes",
|
|
"isAtomicPushAllowed",
|
|
];
|
|
|
|
export const RESTART_POLL_TIMEOUT = 2 * 150 * 1000;
|
|
export const RESTART_POLL_INTERVAL = 2000;
|
|
|
|
export enum MIGRATION_STATUS {
|
|
COMPLETED = "COMPLETED",
|
|
IN_PROGRESS = "IN_PROGRESS",
|
|
PENDING = "PENDING",
|
|
}
|