use active in the api query

This commit is contained in:
Lisa Passing 2015-05-05 12:09:38 +02:00
parent ab9697892f
commit e8c719587f
2 changed files with 5 additions and 6 deletions

View File

@ -31,7 +31,7 @@ Controller = Ember.Controller.extend
data = @get('model')
repos = data.repositories.filter (item, index) ->
if item.active && item.default_branch.last_build
if item.default_branch.last_build
item
repos.sortBy('default_branch.last_build.finished_at').reverse()
@ -41,10 +41,9 @@ Controller = Ember.Controller.extend
data = @get('model')
repos = data.repositories.filter (item, index) ->
if item.active
if item.default_branch.last_build != null
if item.default_branch.last_build.state == 'started'
item
if item.default_branch.last_build != null
if item.default_branch.last_build.state == 'started'
item
repos
).property('model')

View File

@ -9,7 +9,7 @@ Route = TravisRoute.extend
model: (params) ->
owner = {}
$.get("https://api-staging.travis-ci.org/v3/owner/#{params.owner}?include=user.repositories,organization.repositories,build.commit").then( (data) ->
$.get("https://api-staging.travis-ci.org/v3/owner/#{params.owner}?include=user.repositories,organization.repositories,build.commit,repository.active").then( (data) ->
data
)