Skip to content

Commit

Permalink
MAT-7792: add flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Nov 18, 2024
1 parent 805868e commit 9013af0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { BehaviorSubject } from "rxjs";
// immutable object that retains state, tracks updates
const subject = new BehaviorSubject<FeatureFlags | null>(null);
export interface FeatureFlags {
CQLBuilderFunctions: boolean;
CQLBuilderIncludes: boolean;
CQLBuilderParameters: boolean;
qiCoreElementsTab: boolean;
Expand All @@ -17,6 +18,7 @@ export interface FeatureFlags {
MeasureButtons: boolean;
}
const initialState: FeatureFlags = {
CQLBuilderFunctions: false,
CQLBuilderIncludes: false,
CQLBuilderParameters: false,
qiCore6: false,
Expand Down

0 comments on commit 9013af0

Please sign in to comment.