diff options
Diffstat (limited to 'shared/models')
-rw-r--r-- | shared/models/plugins/client-hook.model.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shared/models/plugins/client-hook.model.ts b/shared/models/plugins/client-hook.model.ts index 6c92ef3c6..f8ca32771 100644 --- a/shared/models/plugins/client-hook.model.ts +++ b/shared/models/plugins/client-hook.model.ts | |||
@@ -94,6 +94,12 @@ export const clientActionHookObject = { | |||
94 | // Fired when the "Go Live" page is being initalized | 94 | // Fired when the "Go Live" page is being initalized |
95 | 'action:go-live.init': true, | 95 | 'action:go-live.init': true, |
96 | 96 | ||
97 | // Fired when the user explicitely logged in/logged out | ||
98 | 'action:auth-user.logged-in': true, | ||
99 | 'action:auth-user.logged-out': true, | ||
100 | // Fired when the application loaded user information (using tokens from the local storage or after a successful login) | ||
101 | 'action:auth-user.information-loaded': true, | ||
102 | |||
97 | // Fired when the modal to download a video/caption is shown | 103 | // Fired when the modal to download a video/caption is shown |
98 | 'action:modal.video-download.shown': true, | 104 | 'action:modal.video-download.shown': true, |
99 | 105 | ||