]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/plugins/client-hook.model.ts
Support plugin hooks in embed
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / client-hook.model.ts
index b53b8de99ce7c138d8c22c5bb6115d07e49e025a..193a3f6469fdd1da07ea2f4bda2634f9acbfc48e 100644 (file)
@@ -80,7 +80,13 @@ export const clientActionHookObject = {
   'action:router.navigation-end': true,
 
   // Fired when the registration page is being initialized
-  'action:signup.register.init': true
+  'action:signup.register.init': true,
+
+  // ####### Embed hooks #######
+  // In embed scope, peertube helpers are not available
+
+  // Fired when the embed loaded the player
+  'action:embed.player.loaded': true
 }
 
 export type ClientActionHookName = keyof typeof clientActionHookObject