Skip to content

Instantly share code, notes, and snippets.

@nehalist nehalist/svc.coffee
Last active May 22, 2016

Embed
What would you like to do?
# 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
You can’t perform that action at this time.