Browse Source

feat(expermients): Add saved issue searches location experiment to config (#43930)

Malachi Willey 2 years ago
parent
commit
d8786024fa
1 changed files with 8 additions and 1 deletions
  1. 8 1
      static/app/data/experimentConfig.tsx

+ 8 - 1
static/app/data/experimentConfig.tsx

@@ -16,7 +16,14 @@ export const experimentList: {
   key: string;
   parameter: string;
   type: ExperimentType;
-}[] = [];
+}[] = [
+  {
+    key: 'SavedIssueSearchesLocationExperiment',
+    type: ExperimentType.Organization,
+    parameter: 'exposed',
+    assignments: [0, 1],
+  },
+];
 
 export const experimentConfig = experimentList.reduce(
   (acc, exp) => ({...acc, [exp.key]: exp}),