diff options
Diffstat (limited to 'server/controllers/api/config.ts')
-rw-r--r-- | server/controllers/api/config.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/controllers/api/config.ts b/server/controllers/api/config.ts index 113c1e9db..70e8aa970 100644 --- a/server/controllers/api/config.ts +++ b/server/controllers/api/config.ts | |||
@@ -95,6 +95,9 @@ async function getConfig (req: express.Request, res: express.Response) { | |||
95 | hls: { | 95 | hls: { |
96 | enabled: CONFIG.TRANSCODING.HLS.ENABLED | 96 | enabled: CONFIG.TRANSCODING.HLS.ENABLED |
97 | }, | 97 | }, |
98 | webtorrent: { | ||
99 | enabled: CONFIG.TRANSCODING.WEBTORRENT.ENABLED | ||
100 | }, | ||
98 | enabledResolutions: getEnabledResolutions() | 101 | enabledResolutions: getEnabledResolutions() |
99 | }, | 102 | }, |
100 | import: { | 103 | import: { |
@@ -304,6 +307,9 @@ function customConfig (): CustomConfig { | |||
304 | '1080p': CONFIG.TRANSCODING.RESOLUTIONS[ '1080p' ], | 307 | '1080p': CONFIG.TRANSCODING.RESOLUTIONS[ '1080p' ], |
305 | '2160p': CONFIG.TRANSCODING.RESOLUTIONS[ '2160p' ] | 308 | '2160p': CONFIG.TRANSCODING.RESOLUTIONS[ '2160p' ] |
306 | }, | 309 | }, |
310 | webtorrent: { | ||
311 | enabled: CONFIG.TRANSCODING.WEBTORRENT.ENABLED | ||
312 | }, | ||
307 | hls: { | 313 | hls: { |
308 | enabled: CONFIG.TRANSCODING.HLS.ENABLED | 314 | enabled: CONFIG.TRANSCODING.HLS.ENABLED |
309 | } | 315 | } |