mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 01:39:37 +02:00
Allow to change the default channel name (#6000)
* Allow to change the default channel name * Fix tests * Fix tests * Fix tests
This commit is contained in:
parent
ae468445b2
commit
ea6c2b064f
10 changed files with 39 additions and 6 deletions
|
@ -369,7 +369,8 @@ const CONFIG = {
|
|||
}
|
||||
},
|
||||
get VIDEO_QUOTA () { return parseBytes(config.get<number>('user.video_quota')) },
|
||||
get VIDEO_QUOTA_DAILY () { return parseBytes(config.get<number>('user.video_quota_daily')) }
|
||||
get VIDEO_QUOTA_DAILY () { return parseBytes(config.get<number>('user.video_quota_daily')) },
|
||||
get DEFAULT_CHANNEL_NAME () { return config.get<string>('user.default_channel_name') }
|
||||
},
|
||||
VIDEO_CHANNELS: {
|
||||
get MAX_PER_USER () { return config.get<number>('video_channels.max_per_user') }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue