We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent546d317 commit870b8d3Copy full SHA for 870b8d3
src/main/kotlin/com/coder/gateway/settings/CoderSettings.kt
@@ -98,6 +98,12 @@ open class CoderSettingsState(
98
// around issues on macOS where it periodically wakes and Gateway
99
// reconnects, keeping the workspace constantly up.
100
openvardisableAutostart:Boolean = getOS() ==OS.MAC,
101
+
102
+/**
103
+ * Whether SSH wildcard config is enabled
104
+*/
105
+openvarisSshWildcardConfigEnabled:Boolean =true,
106
107
// Extra SSH config options.
108
openvarsshConfigOptions:String ="",
109
// An external command to run in the directory of the IDE before connecting
@@ -199,6 +205,12 @@ open class CoderSettings(
199
205
val disableAutostart:Boolean
200
206
get()= state.disableAutostart
201
207
208
209
210
211
+val isSshWildcardConfigEnabled:Boolean
212
+ get()= state.isSshWildcardConfigEnabled
213
202
214
/**
203
215
* Extra SSH config to append to each host block.
204
216
*/