Skip to content

Instantly share code, notes, and snippets.

@nehalist
Last active May 22, 2016 11:36
Show Gist options
  • Save nehalist/d233c6859c4cb6d33caa3625b505a4e1 to your computer and use it in GitHub Desktop.
Save nehalist/d233c6859c4cb6d33caa3625b505a4e1 to your computer and use it in GitHub Desktop.
# service
@app.factory 'CurrentUser', ($http) ->
$http({
method: 'GET',
url: 'users/me'
}).then (user) =>
# i want to return the user object
return # ... what?
# favored usage
console.log CurrentUser.name, CurrentUser.mail, ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment