]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/plugins/peertube-plugin.model.ts
Add ability to hide plugin settings
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / peertube-plugin.model.ts
CommitLineData
30ff39e7
C
1import { PluginType } from './plugin.type'
2
ad91e700
C
3export interface PeerTubePlugin {
4 name: string
30ff39e7 5 type: PluginType
b5f919ac 6 latestVersion: string
ad91e700
C
7 version: string
8 enabled: boolean
9 uninstalled: boolean
10 peertubeEngine: string
11 description: string
dba85a1e
C
12 homepage: string
13 settings: { [ name: string ]: string }
ad91e700
C
14 createdAt: Date
15 updatedAt: Date
16}