diff options
Diffstat (limited to 'shared/models/plugins/server/server-hook.model.ts')
-rw-r--r-- | shared/models/plugins/server/server-hook.model.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/shared/models/plugins/server/server-hook.model.ts b/shared/models/plugins/server/server-hook.model.ts index bbd08365c..7881beaa2 100644 --- a/shared/models/plugins/server/server-hook.model.ts +++ b/shared/models/plugins/server/server-hook.model.ts | |||
@@ -113,7 +113,13 @@ export const serverFilterHookObject = { | |||
113 | 'filter:transcoding.manual.resolutions-to-transcode.result': true, | 113 | 'filter:transcoding.manual.resolutions-to-transcode.result': true, |
114 | 'filter:transcoding.auto.resolutions-to-transcode.result': true, | 114 | 'filter:transcoding.auto.resolutions-to-transcode.result': true, |
115 | 115 | ||
116 | 'filter:activity-pub.remote-video-comment.create.accept.result': true | 116 | 'filter:activity-pub.remote-video-comment.create.accept.result': true, |
117 | |||
118 | 'filter:activity-pub.activity.context.build.result': true, | ||
119 | |||
120 | // Filter the result of video JSON LD builder | ||
121 | // You may also need to use filter:activity-pub.activity.context.build.result to also update JSON LD context | ||
122 | 'filter:activity-pub.video.jsonld.build.result': true | ||
117 | } | 123 | } |
118 | 124 | ||
119 | export type ServerFilterHookName = keyof typeof serverFilterHookObject | 125 | export type ServerFilterHookName = keyof typeof serverFilterHookObject |