blob: ec175e9ef320d0dac012b422324eb9eed050e030 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export interface RegisterServerSettingOptions {
name: string
label: string
type: 'input' | 'input-checkbox' | 'input-textarea' | 'markdown-text' | 'markdown-enhanced'
// If the setting is not private, anyone can view its value (client code included)
// If the setting is private, only server-side hooks can access it
// Mainly used by the PeerTube client to get admin config
private: boolean
// Default setting value
default?: string
}
export interface RegisteredServerSettings {
registeredSettings: RegisterServerSettingOptions[]
}
|