aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-07-11 14:40:19 +0200
committerChocobozzz <chocobozzz@cpy.re>2019-07-24 10:58:16 +0200
commitdba85a1e9e9f603ba52e1ea42deaf3fdd799b1d8 (patch)
tree7695023d90b78f972abafc718346c50264587ff5 /shared/models/plugins
parentd00dc28dd73ad9dd419d5a5ac6ac747cefbc6e8b (diff)
downloadPeerTube-dba85a1e9e9f603ba52e1ea42deaf3fdd799b1d8.tar.gz
PeerTube-dba85a1e9e9f603ba52e1ea42deaf3fdd799b1d8.tar.zst
PeerTube-dba85a1e9e9f603ba52e1ea42deaf3fdd799b1d8.zip
WIP plugins: add plugin settings/uninstall in client
Diffstat (limited to 'shared/models/plugins')
-rw-r--r--shared/models/plugins/peertube-plugin.model.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/models/plugins/peertube-plugin.model.ts b/shared/models/plugins/peertube-plugin.model.ts
index 2a1dfb3a7..de3c7741b 100644
--- a/shared/models/plugins/peertube-plugin.model.ts
+++ b/shared/models/plugins/peertube-plugin.model.ts
@@ -6,7 +6,8 @@ export interface PeerTubePlugin {
6 uninstalled: boolean 6 uninstalled: boolean
7 peertubeEngine: string 7 peertubeEngine: string
8 description: string 8 description: string
9 settings: any 9 homepage: string
10 settings: { [ name: string ]: string }
10 createdAt: Date 11 createdAt: Date
11 updatedAt: Date 12 updatedAt: Date
12} 13}