PromucFlow_constructor/app/client/src/ce/constants/tenantConstants.ts
Nidhi dd73e8b91f
fix: Enable atomic pushes in git using an environment configuration (#33367)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-05-14 10:24:21 +05:30

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",
}