Add overviews filter hook tests

This commit is contained in:
Chocobozzz
2021-07-21 16:13:20 +02:00
parent 64f9b91de9
commit d1aed10353
3 changed files with 18 additions and 7 deletions

View File

@@ -109,7 +109,7 @@ async function getVideos (
res: express.Response,
where: { videoChannelId?: number, tagsOneOf?: string[], categoryOneOf?: number[] }
) {
let query = Object.assign({
const query = await Hooks.wrapObject({
start: 0,
count: 12,
sort: '-createdAt',
@@ -117,10 +117,10 @@ async function getVideos (
nsfw: buildNSFWFilter(res),
user: res.locals.oauth ? res.locals.oauth.token.User : undefined,
withFiles: false,
countVideos: false
}, where)
countVideos: false,
query = await Hooks.wrapObject(query, 'filter:api.overviews.videos.list.params')
...where
}, 'filter:api.overviews.videos.list.params')
const { data } = await Hooks.wrapPromiseFun(
VideoModel.listForApi,