mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
chore: add multi-org experiment for UI view toggling (#13260)
* chore: Add multi-org experiment UI will use to toggle different views
This commit is contained in:
9
coderd/apidoc/docs.go
generated
9
coderd/apidoc/docs.go
generated
@ -9542,15 +9542,18 @@ const docTemplate = `{
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"example",
|
||||
"auto-fill-parameters"
|
||||
"auto-fill-parameters",
|
||||
"multi-organization"
|
||||
],
|
||||
"x-enum-comments": {
|
||||
"ExperimentAutoFillParameters": "This should not be taken out of experiments until we have redesigned the feature.",
|
||||
"ExperimentExample": "This isn't used for anything."
|
||||
"ExperimentExample": "This isn't used for anything.",
|
||||
"ExperimentMultiOrganization": "Requires organization context for interactions, default org is assumed."
|
||||
},
|
||||
"x-enum-varnames": [
|
||||
"ExperimentExample",
|
||||
"ExperimentAutoFillParameters"
|
||||
"ExperimentAutoFillParameters",
|
||||
"ExperimentMultiOrganization"
|
||||
]
|
||||
},
|
||||
"codersdk.ExternalAuth": {
|
||||
|
11
coderd/apidoc/swagger.json
generated
11
coderd/apidoc/swagger.json
generated
@ -8541,12 +8541,17 @@
|
||||
},
|
||||
"codersdk.Experiment": {
|
||||
"type": "string",
|
||||
"enum": ["example", "auto-fill-parameters"],
|
||||
"enum": ["example", "auto-fill-parameters", "multi-organization"],
|
||||
"x-enum-comments": {
|
||||
"ExperimentAutoFillParameters": "This should not be taken out of experiments until we have redesigned the feature.",
|
||||
"ExperimentExample": "This isn't used for anything."
|
||||
"ExperimentExample": "This isn't used for anything.",
|
||||
"ExperimentMultiOrganization": "Requires organization context for interactions, default org is assumed."
|
||||
},
|
||||
"x-enum-varnames": ["ExperimentExample", "ExperimentAutoFillParameters"]
|
||||
"x-enum-varnames": [
|
||||
"ExperimentExample",
|
||||
"ExperimentAutoFillParameters",
|
||||
"ExperimentMultiOrganization"
|
||||
]
|
||||
},
|
||||
"codersdk.ExternalAuth": {
|
||||
"type": "object",
|
||||
|
Reference in New Issue
Block a user