aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/peertube-plugin-index-list.model.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-07-16 11:33:22 +0200
committerChocobozzz <chocobozzz@cpy.re>2019-07-24 10:58:16 +0200
commit6702a1b2ccd666285dee9c72b5bace641d2fce8b (patch)
tree78b7125d664b6f6b6c993c4e8483e1bdd24a0a30 /shared/models/plugins/peertube-plugin-index-list.model.ts
parent503c6f440abc8f5924c38c4bd63591cb6cefacec (diff)
downloadPeerTube-6702a1b2ccd666285dee9c72b5bace641d2fce8b.tar.gz
PeerTube-6702a1b2ccd666285dee9c72b5bace641d2fce8b.tar.zst
PeerTube-6702a1b2ccd666285dee9c72b5bace641d2fce8b.zip
Add ability to search available plugins
Diffstat (limited to 'shared/models/plugins/peertube-plugin-index-list.model.ts')
-rw-r--r--shared/models/plugins/peertube-plugin-index-list.model.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/shared/models/plugins/peertube-plugin-index-list.model.ts b/shared/models/plugins/peertube-plugin-index-list.model.ts
new file mode 100644
index 000000000..817bac31e
--- /dev/null
+++ b/shared/models/plugins/peertube-plugin-index-list.model.ts
@@ -0,0 +1,10 @@
1import { PluginType } from './plugin.type'
2
3export interface PeertubePluginIndexList {
4 start: number
5 count: number
6 sort: string
7 pluginType?: PluginType
8 currentPeerTubeEngine?: string
9 search?: string
10}