Merge pull request #627 from alphagov/update-job-page-query-2

Returns the outcome statistics for the job on the API call.
This commit is contained in:
minglis
2016-08-25 12:07:20 +01:00
committed by GitHub
5 changed files with 197 additions and 22 deletions

View File

@@ -210,7 +210,11 @@ class JobSchema(BaseSchema):
class Meta:
model = models.Job
exclude = ('notifications',)
exclude = (
'notifications',
'notifications_sent',
'notifications_delivered',
'notifications_failed')
strict = True