X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fserver%2Fcustom-config.model.ts;h=a7c2a3bab16a77ba7dd014747fe4a8ed7b4f7e72;hb=8ae03c37181822617418d1fc372982b245ac0a9a;hp=46d0a86efa31c77e8b8fb81a730bf9478557bafa;hpb=09cababd79f9d445aa027c93cdfe823745fa041a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index 46d0a86ef..a7c2a3bab 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts @@ -1,35 +1,75 @@ +import { NSFWPolicyType } from '../videos/nsfw-policy.type' + export interface CustomConfig { instance: { name: string + 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: { javascript?: string css?: string } } + theme: { + default: string + } + + services: { + twitter: { + username: string + whitelisted: boolean + } + } + cache: { previews: { size: number } + + captions: { + size: number + } } signup: { enabled: boolean limit: number + requiresEmailVerification: boolean } admin: { email: string } + contactForm: { + enabled: boolean + } + user: { videoQuota: number + videoQuotaDaily: number } transcoding: { enabled: boolean + allowAdditionalExtensions: boolean + allowAudioFiles: boolean threads: number resolutions: { '240p': boolean @@ -37,6 +77,49 @@ export interface CustomConfig { '480p': boolean '720p': boolean '1080p': boolean + '2160p': boolean + } + hls: { + enabled: boolean + } + } + + import: { + videos: { + http: { + enabled: boolean + }, + torrent: { + enabled: boolean + } + } + } + + autoBlacklist: { + videos: { + ofUsers: { + enabled: boolean + } + } + } + + followers: { + instance: { + enabled: boolean, + manualApproval: boolean + } + } + + followings: { + instance: { + autoFollowBack: { + enabled: boolean + } + + autoFollowIndex: { + enabled: boolean + indexUrl: string + } } } }