Files
openfoodnetwork/app/assets/javascripts/darkswarm/services/current_user.js.coffee
2014-05-08 16:07:56 +10:00

8 lines
213 B
CoffeeScript

Darkswarm.factory 'CurrentUser', (user)-> # This is for the current user
if user and !$.isEmptyObject(user)
new class CurrentUser
constructor: ->
@[k] = v for k, v of user
else
undefined