Revert "Revert "add eventType as an attribute, include api builds to the history""

This reverts commit 4d519f145a.
This commit is contained in:
Piotr Sarnacki 2015-06-11 11:32:25 +02:00
parent d252a0657a
commit 92eb8436a1
2 changed files with 3 additions and 7 deletions

View File

@ -17,6 +17,7 @@ Build = Model.extend DurationCalculations,
pullRequest: DS.attr('boolean')
pullRequestTitle: DS.attr()
pullRequestNumber: DS.attr('number')
eventType: DS.attr('string')
repo: DS.belongsTo('repo', async: true)
commit: DS.belongsTo('commit', async: true)
@ -33,11 +34,6 @@ Build = Model.extend DurationCalculations,
@reload()
).property('_config')
# TODO add eventType to the api for api build requests
eventType: (->
if @get('pullRequest') then 'pull_request' else 'push'
).property('pullRequest')
isPullRequest: (->
@get('eventType') == 'pull_request' || @get('pullRequest')
).property('eventType')

View File

@ -50,8 +50,8 @@ Repo = Model.extend
builds: (->
id = @get('id')
builds = @store.filter('build', event_type: 'push', repository_id: id, (b) ->
b.get('repo.id') == id && b.get('eventType') == 'push'
builds = @store.filter('build', event_type: ['push', 'api'], repository_id: id, (b) ->
b.get('repo.id') == id && (b.get('eventType') == 'push' || b.get('eventType') == 'api')
)
# TODO: move to controller