mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
27 lines
No EOL
594 B
JavaScript
27 lines
No EOL
594 B
JavaScript
Telescope.menus.register("userMenu", [
|
|
{
|
|
route: function () {
|
|
return Router.path('user_profile', {_idOrSlug: Meteor.user().telescope.slug});
|
|
},
|
|
label: 'profile',
|
|
description: 'view_your_profile'
|
|
},
|
|
{
|
|
route: function () {
|
|
return Router.path('user_edit', {slug: Meteor.user().telescope.slug});
|
|
},
|
|
label: 'edit_account',
|
|
description: 'edit_your_profile'
|
|
},
|
|
{
|
|
route: 'settings',
|
|
label: 'settings',
|
|
description: 'settings',
|
|
adminOnly: true
|
|
},
|
|
{
|
|
route: 'signOut',
|
|
label: 'sign_out',
|
|
description: 'sign_out'
|
|
}
|
|
]); |