Revert "add eventType as an attribute, include api builds to the history"
This reverts commit 5e1dd9a83b
.
This commit is contained in:
parent
93373e89ee
commit
4d519f145a
|
@ -17,7 +17,6 @@ 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)
|
||||
|
@ -34,6 +33,11 @@ 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')
|
||||
|
|
|
@ -50,8 +50,8 @@ Repo = Model.extend
|
|||
|
||||
builds: (->
|
||||
id = @get('id')
|
||||
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')
|
||||
builds = @store.filter('build', event_type: 'push', repository_id: id, (b) ->
|
||||
b.get('repo.id') == id && b.get('eventType') == 'push'
|
||||
)
|
||||
|
||||
# TODO: move to controller
|
||||
|
|
Loading…
Reference in New Issue
Block a user