diff options
author | Daniel Axtens <dja@axtens.net> | 2019-04-30 02:57:01 +1000 |
---|---|---|
committer | Daniel Axtens <dja@axtens.net> | 2019-04-30 15:20:57 +1000 |
commit | 7a20ccda99e48dab643d1fbd7e170fe3e4c47185 (patch) | |
tree | b15c52e451de569faed8c703c89dc3f78e7e452e /docs/api/schemas/patchwork.j2 | |
parent | 666de29ebada5990a8d69f4d71d6bb271e1a68c3 (diff) | |
download | patchwork-7a20ccda99e48dab643d1fbd7e170fe3e4c47185.tar patchwork-7a20ccda99e48dab643d1fbd7e170fe3e4c47185.tar.gz |
REST: A check must specify a state
The Ozlabs crew noticed that a check without a state caused a
KeyError in data['state']. Mark state as mandatory, check for
it, and add a test.
Reported-by: Russell Currey <ruscur@russell.cc>
Reported-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Daniel Axtens <dja@axtens.net>
Diffstat (limited to 'docs/api/schemas/patchwork.j2')
-rw-r--r-- | docs/api/schemas/patchwork.j2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/api/schemas/patchwork.j2 b/docs/api/schemas/patchwork.j2 index 7d34863..5e2f5e4 100644 --- a/docs/api/schemas/patchwork.j2 +++ b/docs/api/schemas/patchwork.j2 @@ -1319,6 +1319,8 @@ components: nullable: true CheckCreate: type: object + required: + - state properties: state: title: State |