Auth is not a service, so for now inject auth into components as well

This commit is contained in:
Piotr Sarnacki 2015-08-19 11:21:48 +02:00
parent eec378116f
commit 1f7f75b32c
2 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,6 @@ Object.defineProperty Log.Limit.prototype, 'limited',
LogContentComponent = Ember.Component.extend
popup: Ember.inject.service()
auth: Ember.inject.service()
currentUserBinding: 'auth.currentUser'

View File

@ -7,6 +7,7 @@ initialize = (container, app) ->
app.inject('route', 'auth', 'auth:main')
app.inject('controller', 'auth', 'auth:main')
app.inject('application', 'auth', 'auth:main')
app.inject('component', 'auth', 'auth:main')
app.inject('auth', 'store', 'store:main')