summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2022-04-01 21:53:10 +1100
committerGitHub <noreply@github.com>2022-04-01 21:53:10 +1100
commitb2d35d88ec6d9f652e3926cbdd083b03162da9c2 (patch)
treeb2b22894399be7e412a3ec2d3d2710adec4167f5 /api
parentc3faa38d72469e63eaa7b1fed498ff9a056213e1 (diff)
feat(configuration): allow rfc4918 http verbs in acl (#2988)
This allows the HTTP Method verbs from RFC4918 to be used. See https://datatracker.ietf.org/doc/html/rfc4918 for more information.
Diffstat (limited to 'api')
-rw-r--r--api/openapi.yml18
1 files changed, 17 insertions, 1 deletions
diff --git a/api/openapi.yml b/api/openapi.yml
index 74f4dad16..35136362d 100644
--- a/api/openapi.yml
+++ b/api/openapi.yml
@@ -637,7 +637,23 @@ components:
explode: true
schema:
type: string
- enum: ["GET", "HEAD", "POST", "PUT", "PATCH", "DELETE", "TRACE", "CONNECT", "OPTIONS"]
+ enum:
+ - "GET"
+ - "HEAD"
+ - "POST"
+ - "PUT"
+ - "PATCH"
+ - "DELETE"
+ - "TRACE"
+ - "CONNECT"
+ - "OPTIONS"
+ - "COPY"
+ - "LOCK"
+ - "MKCOL"
+ - "MOVE"
+ - "PROPFIND"
+ - "PROPPATCH"
+ - "UNLOCK"
authParam:
name: auth
in: query