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 /shared/extra-utils | |
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 'shared/extra-utils')
-rw-r--r-- | shared/extra-utils/server/config-command.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/extra-utils/server/config-command.ts b/shared/extra-utils/server/config-command.ts index 51d04fa63..2746e9ac4 100644 --- a/shared/extra-utils/server/config-command.ts +++ b/shared/extra-utils/server/config-command.ts | |||
@@ -220,6 +220,9 @@ export class ConfigCommand extends AbstractCommand { | |||
220 | videoQuota: 5242881, | 220 | videoQuota: 5242881, |
221 | videoQuotaDaily: 318742 | 221 | videoQuotaDaily: 318742 |
222 | }, | 222 | }, |
223 | videoChannels: { | ||
224 | maxPerUser: 20 | ||
225 | }, | ||
223 | transcoding: { | 226 | transcoding: { |
224 | enabled: true, | 227 | enabled: true, |
225 | allowAdditionalExtensions: true, | 228 | allowAdditionalExtensions: true, |