File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
src/main/kotlin/com/coder/gateway/settings Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,12 @@ open class CoderSettingsState(
98
98
// around issues on macOS where it periodically wakes and Gateway
99
99
// reconnects, keeping the workspace constantly up.
100
100
open var disableAutostart : Boolean = getOS() == OS .MAC ,
101
+
102
+ /* *
103
+ * Whether SSH wildcard config is enabled
104
+ */
105
+ open var isSshWildcardConfigEnabled : Boolean = true ,
106
+
101
107
// Extra SSH config options.
102
108
open var sshConfigOptions : String = " " ,
103
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
+ * Whether SSH wildcard config is enabled
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
*/
You can’t perform that action at this time.
0 commit comments