diff options
author | Chocobozzz <chocobozzz@framasoft.org> | 2019-11-25 11:16:12 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@framasoft.org> | 2019-11-25 11:16:12 +0100 |
commit | f92bb405d48af737636fec1025e19f27d7044158 (patch) | |
tree | 687759585d7c92f865112ca3e920764471603b20 /shared/models/plugins/client-hook.model.ts | |
parent | efcd6f2e625c1c5d06025f27a2bf3a84d3f8b483 (diff) | |
parent | ba7b7e572f0634e534320a057f4cc0a95f2a541d (diff) | |
download | PeerTube-f92bb405d48af737636fec1025e19f27d7044158.tar.gz PeerTube-f92bb405d48af737636fec1025e19f27d7044158.tar.zst PeerTube-f92bb405d48af737636fec1025e19f27d7044158.zip |
Merge branch 'signup-hooks' into 'develop'
(plugins) adding signup scope and init hook, modifying ensureUserRegistrationAllowed allowedParams
See merge request framasoft/peertube/PeerTube!24
Diffstat (limited to 'shared/models/plugins/client-hook.model.ts')
-rw-r--r-- | shared/models/plugins/client-hook.model.ts | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/shared/models/plugins/client-hook.model.ts b/shared/models/plugins/client-hook.model.ts index 07ea7eb96..91167ff8c 100644 --- a/shared/models/plugins/client-hook.model.ts +++ b/shared/models/plugins/client-hook.model.ts | |||
@@ -38,7 +38,10 @@ export const clientFilterHookObject = { | |||
38 | 'filter:api.search.videos.list.result': true, | 38 | 'filter:api.search.videos.list.result': true, |
39 | // Filter params/result of the function that fetch video-channels according to the user search | 39 | // Filter params/result of the function that fetch video-channels according to the user search |
40 | 'filter:api.search.video-channels.list.params': true, | 40 | 'filter:api.search.video-channels.list.params': true, |
41 | 'filter:api.search.video-channels.list.result': true | 41 | 'filter:api.search.video-channels.list.result': true, |
42 | |||
43 | // Filter form | ||
44 | 'filter:api.signup.registration.create.params': true | ||
42 | } | 45 | } |
43 | 46 | ||
44 | export type ClientFilterHookName = keyof typeof clientFilterHookObject | 47 | export type ClientFilterHookName = keyof typeof clientFilterHookObject |
@@ -58,7 +61,10 @@ export const clientActionHookObject = { | |||
58 | 'action:search.init': true, | 61 | 'action:search.init': true, |
59 | 62 | ||
60 | // Fired every time Angular URL changes | 63 | // Fired every time Angular URL changes |
61 | 'action:router.navigation-end': true | 64 | 'action:router.navigation-end': true, |
65 | |||
66 | // Fired when the registration page is being initialized | ||
67 | 'action:signup.register.init': true | ||
62 | } | 68 | } |
63 | 69 | ||
64 | export type ClientActionHookName = keyof typeof clientActionHookObject | 70 | export type ClientActionHookName = keyof typeof clientActionHookObject |