diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-05 13:54:32 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | 345da516fae80f24c90c2196e96393b489af2243 (patch) | |
tree | 64d72d25a531626c1d4a6337460dae4e32386f2a /shared/models/plugins/plugin-package-json.model.ts | |
parent | 297067399db2bf7505561d67667ca0d559a8e42b (diff) | |
download | PeerTube-345da516fae80f24c90c2196e96393b489af2243.tar.gz PeerTube-345da516fae80f24c90c2196e96393b489af2243.tar.zst PeerTube-345da516fae80f24c90c2196e96393b489af2243.zip |
WIP plugins: add ability to register plugins
Diffstat (limited to 'shared/models/plugins/plugin-package-json.model.ts')
-rw-r--r-- | shared/models/plugins/plugin-package-json.model.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/shared/models/plugins/plugin-package-json.model.ts b/shared/models/plugins/plugin-package-json.model.ts new file mode 100644 index 000000000..4520ee181 --- /dev/null +++ b/shared/models/plugins/plugin-package-json.model.ts | |||
@@ -0,0 +1,15 @@ | |||
1 | export type PluginPackageJson = { | ||
2 | name: string | ||
3 | description: string | ||
4 | engine: { peertube: string }, | ||
5 | |||
6 | homepage: string, | ||
7 | author: string, | ||
8 | bugs: string, | ||
9 | library: string, | ||
10 | |||
11 | staticDirs: { [ name: string ]: string } | ||
12 | css: string[] | ||
13 | |||
14 | clientScripts: { script: string, scopes: string[] }[] | ||
15 | } | ||