]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/server/custom-config.model.ts
WIP plugins: add ability to register plugins
[github/Chocobozzz/PeerTube.git] / shared / models / server / custom-config.model.ts
index 1607b40a8e33fd7304c3be656c7c4eeb88f956b1..670553d16c6f8c819c52f961ac727a09b7e63cd7 100644 (file)
@@ -54,6 +54,7 @@ export interface CustomConfig {
   transcoding: {
     enabled: boolean
     allowAdditionalExtensions: boolean
+    allowAudioFiles: boolean
     threads: number
     resolutions: {
       '240p': boolean
@@ -61,6 +62,7 @@ export interface CustomConfig {
       '480p': boolean
       '720p': boolean
       '1080p': boolean
+      '2160p': boolean
     }
     hls: {
       enabled: boolean
@@ -86,4 +88,11 @@ export interface CustomConfig {
     }
   }
 
+  followers: {
+    instance: {
+      enabled: boolean,
+      manualApproval: boolean
+    }
+  }
+
 }