1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00

Change plugin models names

This commit is contained in:
Chocobozzz 2019-07-24 11:17:42 +02:00
parent 5f189c9c85
commit 9ae88819c2
No known key found for this signature in database
GPG key ID: 583A612D890159BE
14 changed files with 50 additions and 41 deletions

View file

@ -0,0 +1,10 @@
export interface RegisterServerSettingOptions {
name: string
label: string
type: 'input'
default?: string
}
export interface RegisteredServerSettings {
settings: RegisterServerSettingOptions[]
}