Returns the outcome statistics for the job on the API call.

This commit is contained in:
Martyn Inglis
2016-08-23 16:46:58 +01:00
parent 270451e7ba
commit 09cb94081b
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