travis-web/assets/scripts/app/controllers/first-sync.coffee
2015-01-29 13:39:06 +01:00

8 lines
209 B
CoffeeScript

Controller = Em.Controller.extend
needs: ['currentUser']
user: Ember.computed.alias('controllers.currentUser')
isSyncing: Ember.computed.alias('user.isSyncing')
Travis.FirstSyncController = Controller