PeerTube_original/shared/models/server/custom-config.model.ts
Josh Morel 7ccddd7b52 add quarantine videos feature (#1637)
* add quarantine videos feature

* increase Notification settings test timeout

to 20000ms. was completing 7000 locally but timing out
after 10000 on travis

* fix quarantine video test issues

-propagate misspelling
-remove skip from server/tests/client.ts

* WIP use blacklist for moderator video approval

instead of video.quarantine boolean

* finish auto-blacklist feature
2019-04-02 11:26:47 +02:00

90 lines
1.3 KiB
TypeScript

import { NSFWPolicyType } from '../videos/nsfw-policy.type'
export interface CustomConfig {
instance: {
name: string
shortDescription: string
description: string
terms: string
isNSFW: boolean
defaultClientRoute: string
defaultNSFWPolicy: NSFWPolicyType
customizations: {
javascript?: string
css?: 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
threads: number
resolutions: {
'240p': boolean
'360p': boolean
'480p': boolean
'720p': boolean
'1080p': boolean
}
hls: {
enabled: boolean
}
}
import: {
videos: {
http: {
enabled: boolean
},
torrent: {
enabled: boolean
}
}
}
autoBlacklist: {
videos: {
ofUsers: {
enabled: boolean
}
}
}
}