PeerTube/shared/models/server/server-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

101 lines
1.3 KiB
TypeScript

import { NSFWPolicyType } from '../videos/nsfw-policy.type'
export interface ServerConfig {
serverVersion: string
serverCommit?: string
instance: {
name: string
shortDescription: string
defaultClientRoute: string
isNSFW: boolean
defaultNSFWPolicy: NSFWPolicyType
customizations: {
javascript: string
css: string
}
}
email: {
enabled: boolean
}
contactForm: {
enabled: boolean
}
signup: {
allowed: boolean,
allowedForCurrentIP: boolean
requiresEmailVerification: boolean
}
transcoding: {
hls: {
enabled: boolean
}
enabledResolutions: number[]
}
import: {
videos: {
http: {
enabled: boolean
}
torrent: {
enabled: boolean
}
}
}
autoBlacklist: {
videos: {
ofUsers: {
enabled: boolean
}
}
}
avatar: {
file: {
size: {
max: number
}
extensions: string[]
}
}
video: {
image: {
size: {
max: number
}
extensions: string[]
},
file: {
extensions: string[]
}
}
videoCaption: {
file: {
size: {
max: number
},
extensions: string[]
}
}
user: {
videoQuota: number
videoQuotaDaily: number
}
trending: {
videos: {
intervalDays: number
}
}
}