X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fserver%2Fcustom-config.model.ts;h=a7c2a3bab16a77ba7dd014747fe4a8ed7b4f7e72;hb=8ae03c37181822617418d1fc372982b245ac0a9a;hp=c5156d9f3a5d224c081ef9fe3d7a4d47bd9fa723;hpb=244b4ae3973bc1511464a08158a123767f83179c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index c5156d9f3..a7c2a3bab 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts @@ -6,6 +6,18 @@ 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 customizations: { @@ -14,6 +26,10 @@ export interface CustomConfig { } } + theme: { + default: string + } + services: { twitter: { username: string @@ -41,6 +57,10 @@ export interface CustomConfig { email: string } + contactForm: { + enabled: boolean + } + user: { videoQuota: number videoQuotaDaily: number @@ -48,6 +68,8 @@ export interface CustomConfig { transcoding: { enabled: boolean + allowAdditionalExtensions: boolean + allowAudioFiles: boolean threads: number resolutions: { '240p': boolean @@ -55,7 +77,10 @@ export interface CustomConfig { '480p': boolean '720p': boolean '1080p': boolean - [key: string]: boolean + '2160p': boolean + } + hls: { + enabled: boolean } } @@ -69,4 +94,32 @@ export interface CustomConfig { } } } + + autoBlacklist: { + videos: { + ofUsers: { + enabled: boolean + } + } + } + + followers: { + instance: { + enabled: boolean, + manualApproval: boolean + } + } + + followings: { + instance: { + autoFollowBack: { + enabled: boolean + } + + autoFollowIndex: { + enabled: boolean + indexUrl: string + } + } + } }