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(
9898 // around issues on macOS where it periodically wakes and Gateway
9999 // reconnects, keeping the workspace constantly up.
100100 open var disableAutostart : Boolean = getOS() == OS .MAC ,
101+
102+ /* *
103+ * Whether SSH wildcard config is enabled
104+ */
105+ open var isSshWildcardConfigEnabled : Boolean = true ,
106+
101107 // Extra SSH config options.
102108 open var sshConfigOptions : String = " " ,
103109 // An external command to run in the directory of the IDE before connecting
@@ -199,6 +205,12 @@ open class CoderSettings(
199205 val disableAutostart: Boolean
200206 get() = state.disableAutostart
201207
208+ /* *
209+ * Whether SSH wildcard config is enabled
210+ */
211+ val isSshWildcardConfigEnabled: Boolean
212+ get() = state.isSshWildcardConfigEnabled
213+
202214 /* *
203215 * Extra SSH config to append to each host block.
204216 */
You can’t perform that action at this time.
0 commit comments