diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/featureflags/FeatureFlagEnum.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/featureflags/FeatureFlagEnum.java index 86cca7a3a5c9..ff0edf7b6094 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/featureflags/FeatureFlagEnum.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/featureflags/FeatureFlagEnum.java @@ -25,6 +25,8 @@ public enum FeatureFlagEnum { // ------------------- These are actual feature flags meant to be used across the product ----------------------- // JS_EDITOR, - COMMENT; + COMMENT, + SNIPPET, + LINTING; } diff --git a/app/server/appsmith-server/src/main/resources/features/init-flags.yml b/app/server/appsmith-server/src/main/resources/features/init-flags.yml index c08ffbbb6014..6f465f0a0a1a 100644 --- a/app/server/appsmith-server/src/main/resources/features/init-flags.yml +++ b/app/server/appsmith-server/src/main/resources/features/init-flags.yml @@ -25,4 +25,22 @@ ff4j: class: com.appsmith.server.featureflags.strategies.EmailBasedRolloutStrategy param: - name: emailDomains - value: appsmith.com,wazirx.com,pharmeasy.in,allround.club \ No newline at end of file + value: appsmith.com,wazirx.com,pharmeasy.in,allround.club + + - uid: SNIPPET + enable: true + description: Enable snippets feature by email domain of the user + flipstrategy: + class: com.appsmith.server.featureflags.strategies.EmailBasedRolloutStrategy + param: + - name: emailDomains + value: appsmith.com,moolya.com + + - uid: LINTING + enable: true + description: Enable linting feature by email domain of the user + flipstrategy: + class: com.appsmith.server.featureflags.strategies.EmailBasedRolloutStrategy + param: + - name: emailDomains + value: appsmith.com,moolya.com \ No newline at end of file