Vulcan/client/views/users/user_profile.js

9 lines
249 B
JavaScript
Raw Normal View History

2013-10-09 20:50:26 +09:00
Template.user_profile.helpers({
avatarUrl: function() {
return getAvatarUrl(this);
},
canEditProfile: function() {
var currentUser = Meteor.user();
return currentUser && (this._id == currentUser._id || isAdmin(currentUser))
}
});