Allow to cancel build if any of the jobs can be cancelled

This commit is contained in:
Piotr Sarnacki 2015-02-23 17:08:46 +01:00
parent 34d4f1624e
commit 758f26282a

View File

@ -89,8 +89,8 @@ Build = Model.extend DurationCalculations,
).property('rawConfigKeys.length')
canCancel: (->
!@get('isFinished') && @get('jobs').filter( (j) -> j.get('canCancel') ).get('length') > 0
).property('isFinished', 'jobs.@each.canCancel')
@get('jobs').filter( (j) -> j.get('canCancel') ).get('length') > 0
).property('jobs.@each.canCancel')
cancel: (->
Ajax.post "/builds/#{@get('id')}/cancel"