X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fserver%2Fcustom-config.model.ts;h=a7c2a3bab16a77ba7dd014747fe4a8ed7b4f7e72;hb=8ae03c37181822617418d1fc372982b245ac0a9a;hp=4cc379b2a89bb93373b279ff2d53238a872271c0;hpb=536598cfafab1c5e24e881db1c528489f804fb6b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index 4cc379b2a..a7c2a3bab 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts @@ -6,6 +6,17 @@ export interface CustomConfig { shortDescription: string description: string terms: string + codeOfConduct: string + + creationReason: string + moderationInformation: string + administrator: string + maintenanceLifetime: string + businessModel: string + + languages: string[] + categories: number[] + isNSFW: boolean defaultClientRoute: string defaultNSFWPolicy: NSFWPolicyType @@ -15,6 +26,10 @@ export interface CustomConfig { } } + theme: { + default: string + } + services: { twitter: { username: string @@ -62,6 +77,7 @@ export interface CustomConfig { '480p': boolean '720p': boolean '1080p': boolean + '2160p': boolean } hls: { enabled: boolean @@ -94,4 +110,16 @@ export interface CustomConfig { } } + followings: { + instance: { + autoFollowBack: { + enabled: boolean + } + + autoFollowIndex: { + enabled: boolean + indexUrl: string + } + } + } }