cozy/src/utils/feature-flags.ts
2023-07-28 10:06:46 +02:00

6 lines
165 B
TypeScript

export type Feature = 'Send to Email' | 'Hide Images';
export const featureFlags: Record<Feature, boolean> = {
'Send to Email': false,
'Hide Images': false,
};