Skip to content

Commit

Permalink
Merge pull request #91 from MeasureAuthoringTool/MAT-7461
Browse files Browse the repository at this point in the history
MAT-7461: Initialize featureflag for CQLBuilderIncludes
  • Loading branch information
mcmcphillips authored Jul 23, 2024
2 parents 04663b4 + e41f0e8 commit b0ce6b5
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 {
CQLBuilderIncludes: boolean;
includeSDEValues: boolean;
qdmExport: boolean;
qiCoreElementsTab: boolean;
Expand All @@ -21,6 +22,7 @@ export interface FeatureFlags {
qiCoreStu4Updates: boolean;
}
const initialState: FeatureFlags = {
CQLBuilderIncludes: false,
includeSDEValues: false,
qdmExport: false,
qiCoreElementsTab: false,
Expand Down

0 comments on commit b0ce6b5

Please sign in to comment.