]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/config/custom-config.model.ts
Add ability to update some configuration keys
[github/Chocobozzz/PeerTube.git] / shared / models / config / custom-config.model.ts
CommitLineData
fd206f0b
C
1export interface CustomConfig {
2 cache: {
3 previews: {
4 size: number
5 }
6 }
7
8 signup: {
9 enabled: boolean
10 limit: number
11 }
12
13 admin: {
14 email: string
15 }
16
17 user: {
18 videoQuota: number
19 }
20
21 transcoding: {
22 enabled: boolean
23 threads: number
24 resolutions: {
25 '240p': boolean
26 '360p': boolean
27 '480p': boolean
28 '720p': boolean
29 '1080p': boolean
30 }
31 }
32}