mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
feat: allow configuring display apps from template (#9100)
This commit is contained in:
23
coderd/apidoc/docs.go
generated
23
coderd/apidoc/docs.go
generated
@ -8068,6 +8068,23 @@ const docTemplate = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"codersdk.DisplayApp": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"vscode",
|
||||
"vscode_insiders",
|
||||
"web_terminal",
|
||||
"port_forwarding_helper",
|
||||
"ssh_helper"
|
||||
],
|
||||
"x-enum-varnames": [
|
||||
"DisplayAppVSCodeDesktop",
|
||||
"DisplayAppVSCodeInsiders",
|
||||
"DisplayAppWebTerminal",
|
||||
"DisplayAppPortForward",
|
||||
"DisplayAppSSH"
|
||||
]
|
||||
},
|
||||
"codersdk.Entitlement": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
@ -10611,6 +10628,12 @@ const docTemplate = `{
|
||||
"type": "string",
|
||||
"format": "date-time"
|
||||
},
|
||||
"display_apps": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/codersdk.DisplayApp"
|
||||
}
|
||||
},
|
||||
"environment_variables": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
|
Reference in New Issue
Block a user