1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00

Filter on follows actor types in about page

This commit is contained in:
Chocobozzz 2019-11-29 10:55:17 +01:00
parent f5b72c3937
commit 97ecddae10
No known key found for this signature in database
GPG key ID: 583A612D890159BE
12 changed files with 215 additions and 75 deletions

View file

@ -101,6 +101,7 @@ async function listFollowing (req: express.Request, res: express.Response) {
count: req.query.count,
sort: req.query.sort,
search: req.query.search,
actorType: req.query.actorType,
state: req.query.state
})
@ -115,6 +116,7 @@ async function listFollowers (req: express.Request, res: express.Response) {
count: req.query.count,
sort: req.query.sort,
search: req.query.search,
actorType: req.query.actorType,
state: req.query.state
})