-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not check for
globallyEnabled
on Feature Flags
This is something that was also different after the actual implementation of the Feature Flag endpoint. Previously we may have expected some disabled flags would still show up in the response but with a `globallyEnabled` flag set to false. The current endpoint just gives us a list of enabled flags.
- Loading branch information
1 parent
2f56fa8
commit 44bd887
Showing
4 changed files
with
5 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
export interface FeatureFlag { | ||
name: string; | ||
globallyEnabled: boolean; | ||
globallyEnabled?: boolean; | ||
} |