aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/client-hook.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/plugins/client-hook.model.ts')
-rw-r--r--shared/models/plugins/client-hook.model.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/shared/models/plugins/client-hook.model.ts b/shared/models/plugins/client-hook.model.ts
index 87e8092c0..cfa2653c6 100644
--- a/shared/models/plugins/client-hook.model.ts
+++ b/shared/models/plugins/client-hook.model.ts
@@ -49,7 +49,10 @@ export const clientActionHookObject = {
49 'action:video-watch.video.loaded': true, 49 'action:video-watch.video.loaded': true,
50 50
51 // Fired when the search page is being initialized 51 // Fired when the search page is being initialized
52 'action:search.init': true 52 'action:search.init': true,
53
54 // Fired every time Angular URL changes
55 'action:router.navigation-end': true
53} 56}
54 57
55export type ClientActionHookName = keyof typeof clientActionHookObject 58export type ClientActionHookName = keyof typeof clientActionHookObject