DefaultDisplayApps returns the default display applications to enable if none are specified in a template.
()
| 56 | // DefaultDisplayApps returns the default display applications to enable |
| 57 | // if none are specified in a template. |
| 58 | func DefaultDisplayApps() *proto.DisplayApps { |
| 59 | return &proto.DisplayApps{ |
| 60 | Vscode: true, |
| 61 | VscodeInsiders: false, |
| 62 | WebTerminal: true, |
| 63 | PortForwardingHelper: true, |
| 64 | SshHelper: true, |
| 65 | } |
| 66 | } |