mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
![]() |
Template[getTemplate('userMenu')].helpers({
|
||
|
isLoggedIn: function () {
|
||
|
return !!Meteor.user();
|
||
|
},
|
||
|
name: function () {
|
||
|
return getDisplayName(Meteor.user());
|
||
|
},
|
||
|
profileUrl: function () {
|
||
|
return getProfileUrl(Meteor.user());
|
||
|
}
|
||
|
});
|