mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-19 17:52:45 +02:00
chore: featchMode flag (#10516)
This commit is contained in:
parent
9d38a2310d
commit
f5eafb2d6e
@ -66,7 +66,8 @@ export type IFlagKey =
|
|||||||
| 'lifecycleGraphs'
|
| 'lifecycleGraphs'
|
||||||
| 'addConfiguration'
|
| 'addConfiguration'
|
||||||
| 'filterFlagsToArchive'
|
| 'filterFlagsToArchive'
|
||||||
| 'projectListViewToggle';
|
| 'projectListViewToggle'
|
||||||
|
| 'fetchMode';
|
||||||
|
|
||||||
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
||||||
|
|
||||||
@ -310,6 +311,11 @@ const flags: IFlags = {
|
|||||||
process.env.UNLEASH_EXPERIMENTAL_PROJECT_LIST_VIEW_TOGGLE,
|
process.env.UNLEASH_EXPERIMENTAL_PROJECT_LIST_VIEW_TOGGLE,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
|
fetchMode: {
|
||||||
|
name: 'disabled',
|
||||||
|
feature_enabled: false,
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export const defaultExperimentalOptions: IExperimentalOptions = {
|
export const defaultExperimentalOptions: IExperimentalOptions = {
|
||||||
|
Loading…
Reference in New Issue
Block a user