We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e396a02 commit a126d2aCopy full SHA for a126d2a
internal/experiment/experiment.go
@@ -38,6 +38,9 @@ const (
38
39
// Sandboxes experiment lets users who have joined the Slack Developer Program use the CLI to manage their sandboxes.
40
Sandboxes Experiment = "sandboxes"
41
+
42
+ // SetIcon experiment enables icon upload for non-hosted apps.
43
+ SetIcon Experiment = "set-icon"
44
)
45
46
// AllExperiments is a list of all available experiments that can be enabled
@@ -46,6 +49,7 @@ var AllExperiments = []Experiment{
49
Lipgloss,
47
50
Placeholder,
48
51
Sandboxes,
52
+ SetIcon,
53
}
54
55
// EnabledExperiments is a list of experiments that are permanently enabled
0 commit comments