cal.pub0.org/packages/features/flags/config.ts

15 lines
348 B
TypeScript

/**
* Right now we only support boolean flags.
* Maybe later on we can add string variants or numeric ones
**/
export type AppFlags = {
emails: boolean;
insights: boolean;
teams: boolean;
webhooks: boolean;
workflows: boolean;
"v2-booking-page": boolean;
"managed-event-types": boolean;
"google-workspace-directory": boolean;
};