1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Add ability to update icons content

This commit is contained in:
Chocobozzz 2019-12-05 17:26:58 +01:00
parent 3d9a63d3d8
commit c2023a9f02
No known key found for this signature in database
GPG key ID: 583A612D890159BE
4 changed files with 40 additions and 12 deletions

View file

@ -45,7 +45,12 @@ export const clientFilterHookObject = {
'filter:api.signup.registration.create.params': true,
// Filter the options to create our player
'filter:internal.video-watch.player.build-options.result': true
'filter:internal.video-watch.player.build-options.params': true,
'filter:internal.video-watch.player.build-options.result': true,
// Filter our SVG icons content
'filter:internal.common.svg-icons.get-content.params': true,
'filter:internal.common.svg-icons.get-content.result': true
}
export type ClientFilterHookName = keyof typeof clientFilterHookObject