Skip to content

Instantly share code, notes, and snippets.

@smeevil
Created December 28, 2014 12:34
Show Gist options
  • Save smeevil/f536231826e4dad4d047 to your computer and use it in GitHub Desktop.
Save smeevil/f536231826e4dad4d047 to your computer and use it in GitHub Desktop.
Template.chatLine.helpers
username: ->
username = userIdsToUserNames[@userId]
return username if username
console.log "searching for id #{@userId}"
user = Meteor.users.findOne(_id: @userId)
if user?
userIdsToUserNames[@userId] = user.username
return user.username
else
return 'unknown'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment