Commit 5909fc7d authored by Juhee Lee's avatar Juhee Lee
Browse files

feat: set dap v2 feature flag to enabled by default

parent 1b4424ae
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1120,10 +1120,10 @@
            "tags": ["experimental"]
          },
          "gitlab.featureFlags.duoAgentPlatformNext": {
            "type": ["boolean", "null"],
            "default": null,
            "markdownDescription": "Enable the GitLab Duo Agent Platform UI V2 feature\n\n_This feature is experimental._",
            "tags": ["experimental"]
            "type": "boolean",
            "default": true,
            "markdownDescription": "Enable the GitLab Duo Agent Platform Redesigned UI\n\n_This feature is beta._",
            "tags": ["beta"]
          }
        }
      },
+1 −4
Original line number Diff line number Diff line
@@ -36,10 +36,7 @@ export const FEATURE_FLAGS_DEFAULT_VALUES = {
  [FeatureFlag.LsCredentialsSync]: true,
  [FeatureFlag.FormatEdits]: false,
  [FeatureFlag.LsRepositories]: false,
  // The config schema defaults this to `null` (unset) to distinguish "never
  // configured" from an explicit `false`. Here we intentionally coerce that to
  // `false` so the view context key stays boolean; keep both in sync.
  [FeatureFlag.DuoAgentPlatformNext]: false,
  [FeatureFlag.DuoAgentPlatformNext]: true,
};

// PLEASE NOTE: We can only query 20 flags at a time so this list shouldn't grow past that.