We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aabebc commit 9a672c9Copy full SHA for 9a672c9
components/public-api/gitpod/experimental/v1/workspaces.proto
@@ -153,6 +153,18 @@ message Workspace {
153
154
// status is the current status of this Workspace.
155
WorkspaceStatus status = 6;
156
+
157
+ // editor is the editor to be used in this workspace
158
+ EditorReference editor = 7;
159
+}
160
161
+message EditorReference {
162
+ string name = 1;
163
+ string version = 2;
164
165
+ // prefer_toolbox indicates whether the editor should be launched with the
166
+ // JetBrains Toolbox instead of JetBrains Gateway
167
+ bool prefer_toolbox = 3;
168
}
169
170
// WorkspaceStatus represents the currently observed status of a Workspace, including data about child resources that belong to this Workspace.
0 commit comments