mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
WIP plugins: plugin settings on server side
This commit is contained in:
parent
ffb321bedc
commit
ad91e7006e
20 changed files with 419 additions and 61 deletions
12
shared/models/plugins/peertube-plugin.model.ts
Normal file
12
shared/models/plugins/peertube-plugin.model.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
export interface PeerTubePlugin {
|
||||
name: string
|
||||
type: number
|
||||
version: string
|
||||
enabled: boolean
|
||||
uninstalled: boolean
|
||||
peertubeEngine: string
|
||||
description: string
|
||||
settings: any
|
||||
createdAt: Date
|
||||
updatedAt: Date
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue