travis-web/assets/scripts/app/controllers/first_sync.coffee
2015-01-15 17:08:40 +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