- Notifications
You must be signed in to change notification settings - Fork1.1k
feat: add 'hidden' option to 'coder_app' to hide app from UI#14570
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
1177461f4b8c641090da711e6376d561cbc75c781659c25704cf8e82e988da3c8b9425File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Uh oh!
There was an error while loading.Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -41,6 +41,7 @@ message WorkspaceApp { | ||
| UNHEALTHY = 4; | ||
| } | ||
| Health health = 12; | ||
| bool hidden = 13; | ||
| } | ||
| message WorkspaceAgentScript { | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ALTER TABLE workspace_apps DROP COLUMN hidden; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ALTER TABLE workspace_apps ADD COLUMN hidden boolean NOT NULL DEFAULT false; | ||
| COMMENT ON COLUMN workspace_apps.hidden | ||
| IS 'Determines if the app is not shown in user interfaces.' |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -44,6 +44,7 @@ func TestManifest(t *testing.T) { | ||
| Threshold: 55555666, | ||
| }, | ||
| Health: codersdk.WorkspaceAppHealthHealthy, | ||
| Hidden: false, | ||
| }, | ||
| { | ||
| ID: uuid.New(), | ||
| @@ -62,6 +63,7 @@ func TestManifest(t *testing.T) { | ||
| Threshold: 22555666, | ||
| }, | ||
| Health: codersdk.WorkspaceAppHealthInitializing, | ||
| Hidden: true, | ||
DanielleMaywood marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| }, | ||
| }, | ||
| DERPMap: &tailcfg.DERPMap{ | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.