diff options
author | Florian CUNY <poslovitch@bentobox.world> | 2021-10-26 16:42:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-26 16:42:10 +0200 |
commit | 754b6f5f41bdc40aaaeefdb3c351666c305abe20 (patch) | |
tree | d36c8081f3137f1e2c9763879f71d41aa9a3efc1 /server/controllers | |
parent | 615836dbd4f48fc563551446529fa9d3b14dc329 (diff) | |
download | PeerTube-754b6f5f41bdc40aaaeefdb3c351666c305abe20.tar.gz PeerTube-754b6f5f41bdc40aaaeefdb3c351666c305abe20.tar.zst PeerTube-754b6f5f41bdc40aaaeefdb3c351666c305abe20.zip |
Made the video channels limit (per user) server-wide configurable (#4491)
* Made the video channels limit (per user) server-wide configurable
Implements https://github.com/Chocobozzz/PeerTube/issues/3092
Also added a "quota bar" in the account's settings page
* Fixed lint errors
* Another pass at fixing lint errors
* Applied code suggestions
* Removed 'video channels quota'
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/api/config.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/controllers/api/config.ts b/server/controllers/api/config.ts index 5ea1f67c9..8965cacc9 100644 --- a/server/controllers/api/config.ts +++ b/server/controllers/api/config.ts | |||
@@ -196,6 +196,9 @@ function customConfig (): CustomConfig { | |||
196 | videoQuota: CONFIG.USER.VIDEO_QUOTA, | 196 | videoQuota: CONFIG.USER.VIDEO_QUOTA, |
197 | videoQuotaDaily: CONFIG.USER.VIDEO_QUOTA_DAILY | 197 | videoQuotaDaily: CONFIG.USER.VIDEO_QUOTA_DAILY |
198 | }, | 198 | }, |
199 | videoChannels: { | ||
200 | maxPerUser: CONFIG.VIDEO_CHANNELS.MAX_PER_USER | ||
201 | }, | ||
199 | transcoding: { | 202 | transcoding: { |
200 | enabled: CONFIG.TRANSCODING.ENABLED, | 203 | enabled: CONFIG.TRANSCODING.ENABLED, |
201 | allowAdditionalExtensions: CONFIG.TRANSCODING.ALLOW_ADDITIONAL_EXTENSIONS, | 204 | allowAdditionalExtensions: CONFIG.TRANSCODING.ALLOW_ADDITIONAL_EXTENSIONS, |