mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
10 lines
No EOL
219 B
JavaScript
10 lines
No EOL
219 B
JavaScript
Template.post_author.helpers({
|
|
displayName: function () {
|
|
var user = Meteor.users.findOne(this.userId);
|
|
if (user) {
|
|
return Users.getDisplayName(user);
|
|
} else {
|
|
return this.author;
|
|
}
|
|
}
|
|
}); |