Fix job route's use of job.build relationship

build is an async relationship now, so job.get('build') returns a
promise.
This commit is contained in:
Piotr Sarnacki 2015-11-11 14:50:43 +01:00
parent e4623d981b
commit 34e53c1034

View File

@ -18,16 +18,18 @@ Route = TravisRoute.extend
@controllerFor('job').set('job', model)
repo.activate('job')
if build = model.get('build')
build = @store.recordForId('build', build.get('id'))
buildController = @controllerFor('build')
buildController = @controllerFor('build')
# this is a hack to not set favicon changes from build
# controller while we're viewing job, this should go away
# after refactoring of controllers
buildController.set('sendFaviconStateChanges', false)
model.get('repo')
if buildPromise = model.get('build')
buildPromise.then (build) =>
build = @store.recordForId('build', build.get('id'))
buildController.set('build', build)
buildController.set('build', build)
# this is a hack to not set favicon changes from build
# controller while we're viewing job, this should go away
# after refactoring of controllers
buildController.set('sendFaviconStateChanges', false)
model: (params) ->
@store.find('job', params.job_id)