diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-22 16:04:44 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | e8f902c05cb35f6d5e9b75a23ddabd51c220a976 (patch) | |
tree | eb6297bc50206546cbae12c6abc5b50ed802b17e /shared/models/plugins/plugin-package-json.model.ts | |
parent | 93cae47925e4dd68b7d34a41927b2740b4fab1b4 (diff) | |
download | PeerTube-e8f902c05cb35f6d5e9b75a23ddabd51c220a976.tar.gz PeerTube-e8f902c05cb35f6d5e9b75a23ddabd51c220a976.tar.zst PeerTube-e8f902c05cb35f6d5e9b75a23ddabd51c220a976.zip |
Use search client scope
Diffstat (limited to 'shared/models/plugins/plugin-package-json.model.ts')
-rw-r--r-- | shared/models/plugins/plugin-package-json.model.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shared/models/plugins/plugin-package-json.model.ts b/shared/models/plugins/plugin-package-json.model.ts index f8029ec34..87a48e97f 100644 --- a/shared/models/plugins/plugin-package-json.model.ts +++ b/shared/models/plugins/plugin-package-json.model.ts | |||
@@ -1,6 +1,8 @@ | |||
1 | import { PluginClientScope } from './plugin-client-scope.type' | ||
2 | |||
1 | export type ClientScript = { | 3 | export type ClientScript = { |
2 | script: string, | 4 | script: string, |
3 | scopes: string[] | 5 | scopes: PluginClientScope[] |
4 | } | 6 | } |
5 | 7 | ||
6 | export type PluginPackageJson = { | 8 | export type PluginPackageJson = { |