8be1afa12b
The instance should be whitelisted first
54 lines
817 B
TypeScript
54 lines
817 B
TypeScript
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
|
|
|
|
export interface CustomConfig {
|
|
instance: {
|
|
name: string
|
|
shortDescription: string
|
|
description: string
|
|
terms: string
|
|
defaultClientRoute: string
|
|
defaultNSFWPolicy: NSFWPolicyType
|
|
customizations: {
|
|
javascript?: string
|
|
css?: string
|
|
}
|
|
}
|
|
|
|
services: {
|
|
twitter: {
|
|
username: string
|
|
whitelisted: boolean
|
|
}
|
|
}
|
|
|
|
cache: {
|
|
previews: {
|
|
size: number
|
|
}
|
|
}
|
|
|
|
signup: {
|
|
enabled: boolean
|
|
limit: number
|
|
}
|
|
|
|
admin: {
|
|
email: string
|
|
}
|
|
|
|
user: {
|
|
videoQuota: number
|
|
}
|
|
|
|
transcoding: {
|
|
enabled: boolean
|
|
threads: number
|
|
resolutions: {
|
|
'240p': boolean
|
|
'360p': boolean
|
|
'480p': boolean
|
|
'720p': boolean
|
|
'1080p': boolean
|
|
}
|
|
}
|
|
}
|