Add missing fields to models

This commit is contained in:
Piotr Sarnacki 2015-02-11 11:18:24 +01:00
parent c2b8fe469f
commit f8e787fcdd
3 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,7 @@ Commit = Model.extend
authorEmail: DS.attr()
committerName: DS.attr()
committerEmail: DS.attr()
commitedAt: DS.attr()
committedAt: DS.attr()
build: DS.belongsTo('build')

View File

@ -15,6 +15,9 @@ Job = Model.extend DurationCalculations,
_startedAt: DS.attr()
_finishedAt: DS.attr()
allowFailure: DS.attr('boolean')
tags: DS.attr()
repositoryPrivate: DS.attr()
repositorySlug: DS.attr()
repo: DS.belongsTo('repo', async: true)

View File

@ -7,6 +7,7 @@ Serializer = ApplicationSerializer.extend
_config: { key: 'config' }
_finishedAt: { key: 'finished_at' }
_startedAt: { key: 'started_at' }
_duration: { key: 'duration' }
}
extractSingle: (store, primaryType, rawPayload, recordId) ->