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