aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/server-commands/server/config-command.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/server-commands/server/config-command.ts')
-rw-r--r--shared/server-commands/server/config-command.ts17
1 files changed, 16 insertions, 1 deletions
diff --git a/shared/server-commands/server/config-command.ts b/shared/server-commands/server/config-command.ts
index 9a6e413f2..b94bd2625 100644
--- a/shared/server-commands/server/config-command.ts
+++ b/shared/server-commands/server/config-command.ts
@@ -195,6 +195,18 @@ export class ConfigCommand extends AbstractCommand {
195 }) 195 })
196 } 196 }
197 197
198 enableRemoteStudio () {
199 return this.updateExistingSubConfig({
200 newConfig: {
201 videoStudio: {
202 remoteRunners: {
203 enabled: true
204 }
205 }
206 }
207 })
208 }
209
198 // --------------------------------------------------------------------------- 210 // ---------------------------------------------------------------------------
199 211
200 enableStudio () { 212 enableStudio () {
@@ -442,7 +454,10 @@ export class ConfigCommand extends AbstractCommand {
442 } 454 }
443 }, 455 },
444 videoStudio: { 456 videoStudio: {
445 enabled: false 457 enabled: false,
458 remoteRunners: {
459 enabled: false
460 }
446 }, 461 },
447 import: { 462 import: {
448 videos: { 463 videos: {