diff options
author | Stephen Finucane <stephen@that.guru> | 2019-09-08 23:31:47 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2019-10-17 18:51:02 +0100 |
commit | 9795ec7505d78de5819ef3e1ebbd446f4010d7aa (patch) | |
tree | 8a390065ee9c7fa00c2d2e26ca946a3728fb6a01 /docs/api/schemas/v1.1 | |
parent | 3589c00edd0a5e5214196da22a5af4848cb9023b (diff) | |
download | patchwork-9795ec7505d78de5819ef3e1ebbd446f4010d7aa.tar patchwork-9795ec7505d78de5819ef3e1ebbd446f4010d7aa.tar.gz |
REST: Allow creating, updating, deleting of bundles
Allow users to create a new bundle, change the name, public flag and
patches of an existing bundle, and delete an existing bundle.
Some small nits with existing tests are resolved.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Closes: #316
Diffstat (limited to 'docs/api/schemas/v1.1')
-rw-r--r-- | docs/api/schemas/v1.1/patchwork.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/api/schemas/v1.1/patchwork.yaml b/docs/api/schemas/v1.1/patchwork.yaml index 0c086ed..6af697c 100644 --- a/docs/api/schemas/v1.1/patchwork.yaml +++ b/docs/api/schemas/v1.1/patchwork.yaml @@ -1,5 +1,6 @@ # DO NOT EDIT THIS FILE. It is generated from a template. Changes should be -# proposed against the template. +# proposed against the template and updated files generated using the +# 'generate-schemas.py' tool --- openapi: '3.0.0' info: @@ -1251,6 +1252,7 @@ components: allOf: - $ref: '#/components/schemas/UserEmbedded' patches: + title: Patches type: array items: $ref: '#/components/schemas/PatchEmbedded' @@ -1928,6 +1930,7 @@ components: cover_letter: $ref: '#/components/schemas/CoverLetterEmbedded' patches: + title: Patches type: array items: $ref: '#/components/schemas/PatchEmbedded' |