chore: Renaming feature flags for ME to lower case (#25079)
This commit is contained in:
parent
7494c0a0a3
commit
5bc0b6f1e2
|
|
@ -4,7 +4,7 @@
|
||||||
"success": true
|
"success": true
|
||||||
},
|
},
|
||||||
"data": {
|
"data": {
|
||||||
"DATASOURCE_ENVIRONMENTS": false,
|
"release_datasource_environments_enabled": false,
|
||||||
"MULTIPLE_PANES": false,
|
"MULTIPLE_PANES": false,
|
||||||
"APP_EMBED_VIEW_HIDE_SHARE_SETTINGS_VISIBILITY": false
|
"APP_EMBED_VIEW_HIDE_SHARE_SETTINGS_VISIBILITY": false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
export const FEATURE_FLAG = {
|
export const FEATURE_FLAG = {
|
||||||
TEST_FLAG: "TEST_FLAG",
|
TEST_FLAG: "TEST_FLAG",
|
||||||
DATASOURCE_ENVIRONMENTS: "DATASOURCE_ENVIRONMENTS",
|
release_datasource_environments_enabled:
|
||||||
|
"release_datasource_environments_enabled",
|
||||||
ask_ai: "ask_ai",
|
ask_ai: "ask_ai",
|
||||||
APP_NAVIGATION_LOGO_UPLOAD: "APP_NAVIGATION_LOGO_UPLOAD",
|
APP_NAVIGATION_LOGO_UPLOAD: "APP_NAVIGATION_LOGO_UPLOAD",
|
||||||
ask_ai_sql: "ask_ai_sql",
|
ask_ai_sql: "ask_ai_sql",
|
||||||
|
|
@ -15,7 +16,7 @@ export type FeatureFlags = Record<FeatureFlag, boolean>;
|
||||||
|
|
||||||
export const DEFAULT_FEATURE_FLAG_VALUE: FeatureFlags = {
|
export const DEFAULT_FEATURE_FLAG_VALUE: FeatureFlags = {
|
||||||
TEST_FLAG: true,
|
TEST_FLAG: true,
|
||||||
DATASOURCE_ENVIRONMENTS: false,
|
release_datasource_environments_enabled: false,
|
||||||
ask_ai: false,
|
ask_ai: false,
|
||||||
APP_NAVIGATION_LOGO_UPLOAD: false,
|
APP_NAVIGATION_LOGO_UPLOAD: false,
|
||||||
ask_ai_js: false,
|
ask_ai_js: false,
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ public enum FeatureFlagEnum {
|
||||||
// ------------------- End of features for testing -------------------------------------------------------------- //
|
// ------------------- End of features for testing -------------------------------------------------------------- //
|
||||||
|
|
||||||
// ------------------- These are actual feature flags meant to be used across the product ----------------------- //
|
// ------------------- These are actual feature flags meant to be used across the product ----------------------- //
|
||||||
DATASOURCE_ENVIRONMENTS,
|
release_datasource_environments_enabled,
|
||||||
MULTIPLE_PANES,
|
MULTIPLE_PANES,
|
||||||
APP_NAVIGATION_LOGO_UPLOAD,
|
APP_NAVIGATION_LOGO_UPLOAD,
|
||||||
APP_EMBED_VIEW_HIDE_SHARE_SETTINGS_VISIBILITY,
|
APP_EMBED_VIEW_HIDE_SHARE_SETTINGS_VISIBILITY,
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<autocreate>false</autocreate>
|
<autocreate>false</autocreate>
|
||||||
<audit>false</audit>
|
<audit>false</audit>
|
||||||
<features>
|
<features>
|
||||||
<feature uid="DATASOURCE_ENVIRONMENTS" enable="true"
|
<feature uid="release_datasource_environments_enabled" enable="true"
|
||||||
description="Introducing multiple execution environments for datasources">
|
description="Introducing multiple execution environments for datasources">
|
||||||
<flipstrategy class="com.appsmith.server.featureflags.strategies.EmailBasedRolloutStrategy">
|
<flipstrategy class="com.appsmith.server.featureflags.strategies.EmailBasedRolloutStrategy">
|
||||||
<param name="emails"
|
<param name="emails"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user