Add video caption created and deleted hooks

This commit is contained in:
lutangar
2021-12-17 16:41:01 +01:00
committed by Chocobozzz
parent 293074ae79
commit 5e3d29ab21
4 changed files with 27 additions and 0 deletions

View File

@@ -103,6 +103,20 @@ describe('Test plugin action hooks', function () {
})
})
describe('Captions hooks', function () {
it('Should run action:api.video-caption.created', async function () {
await servers[0].captions.add({ videoId: videoUUID, language: 'en', fixture: 'subtitle-good.srt' })
await checkHook('action:api.video-caption.created')
})
it('Should run action:api.video-caption.deleted', async function () {
await servers[0].captions.delete({ videoId: videoUUID, language: 'en' })
await checkHook('action:api.video-caption.deleted')
})
})
describe('Users hooks', function () {
let userId: number