Update hello world

This commit is contained in:
Chocobozzz
2021-06-30 16:44:42 +02:00
parent ea025763fb
commit 7e43cb5f18
5 changed files with 62 additions and 19 deletions

View File

@ -80,6 +80,26 @@ function register ({ registerHook, registerSettingsScript, peertubeHelpers }) {
}
})
registerHook({
target: 'filter:left-menu.links.create.result',
handler: (result) => {
return [
{
key: 'in-my-stuff',
title: 'In my stuff',
links: [
{
path: '/about',
icon: 'alert',
shortLabel: 'About',
label: 'About'
}
]
}
].concat(result)
}
})
// Router hooks
registerHook({