X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fserver%2Fcustom-config.model.ts;h=07e17bda2b973120a886c8a32f3e6b5da1d15d20;hb=1d17d86349fd2b3a9bc85145d02383ba4aea4dc0;hp=2f5cebf7f60a2607d7b00cf77bdf259b4961a309;hpb=bee0abffff73804d816b90c7fd599e0a51c09d61;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index 2f5cebf7f..07e17bda2 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts @@ -6,6 +6,19 @@ export interface CustomConfig { shortDescription: string description: string terms: string + codeOfConduct: string + + creationReason: string + moderationInformation: string + administrator: string + maintenanceLifetime: string + businessModel: string + hardwareInformation: string + + languages: string[] + categories: number[] + + isNSFW: boolean defaultClientRoute: string defaultNSFWPolicy: NSFWPolicyType customizations: { @@ -14,6 +27,10 @@ export interface CustomConfig { } } + theme: { + default: string + } + services: { twitter: { username: string @@ -34,12 +51,17 @@ export interface CustomConfig { signup: { enabled: boolean limit: number + requiresEmailVerification: boolean } admin: { email: string } + contactForm: { + enabled: boolean + } + user: { videoQuota: number videoQuotaDaily: number @@ -47,13 +69,27 @@ export interface CustomConfig { transcoding: { enabled: boolean + + allowAdditionalExtensions: boolean + allowAudioFiles: boolean + threads: number resolutions: { + '0p': boolean '240p': boolean '360p': boolean '480p': boolean '720p': boolean '1080p': boolean + '2160p': boolean + } + + webtorrent: { + enabled: boolean + } + + hls: { + enabled: boolean } } @@ -61,10 +97,38 @@ export interface CustomConfig { 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 + } + } + } }