First commit

This commit is contained in:
Chocobozzz
2019-07-16 11:53:38 +02:00
commit 91a47fc10f
15 changed files with 832 additions and 0 deletions

View File

@ -0,0 +1,10 @@
function register ({ registerHook, peertubeHelpers }) {
registerHook({
target: 'action:application.loaded',
handler: () => console.log('Hello application world')
})
}
export {
register
}

View File

@ -0,0 +1,10 @@
function register ({ registerHook, peertubeHelpers }) {
registerHook({
target: 'action:video-watch.loaded',
handler: () => console.log('Hello video watch world')
})
}
export {
register
}