PromucFlow_constructor/app/client/src/utils/featureFlags.ts

10 lines
229 B
TypeScript
Raw Normal View History

2020-05-05 06:46:54 +00:00
export enum FeatureFlagEnum {
ApiPaneV2 = "ApiPaneV2",
DatasourcePane = "DatasourcePane",
QueryPane = "QueryPane",
}
2020-04-20 08:26:19 +00:00
2020-05-05 06:46:54 +00:00
export const checkForFlag = (flagName: FeatureFlagEnum) => {
2020-04-20 08:26:19 +00:00
return localStorage.getItem(flagName);
};