Received state should also indicate not started build

This commit is contained in:
Piotr Sarnacki 2015-02-25 16:50:49 +01:00
parent ae7586c121
commit 405cdd3dae
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ Build = Model.extend DurationCalculations,
).property('state')
notStarted: (->
@get('state') in ['queued', 'created']
@get('state') in ['queued', 'created', 'received']
).property('state')
startedAt: (->

View File

@ -62,7 +62,7 @@ Job = Model.extend DurationCalculations,
).property('state')
notStarted: (->
@get('state') in ['queued', 'created']
@get('state') in ['queued', 'created', 'received']
).property('state')
clearLog: ->