mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
9 lines
No EOL
249 B
JavaScript
9 lines
No EOL
249 B
JavaScript
Template.user_profile.helpers({
|
|
avatarUrl: function() {
|
|
return getAvatarUrl(this);
|
|
},
|
|
canEditProfile: function() {
|
|
var currentUser = Meteor.user();
|
|
return currentUser && (this._id == currentUser._id || isAdmin(currentUser))
|
|
}
|
|
}); |