diff options
author | provokateurin <kate@provokateurin.de> | 2024-08-19 11:08:28 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-08-21 11:21:33 +0000 |
commit | 9f037c3ef352c150da129abc1119dea3c4219fd0 (patch) | |
tree | 50880d3a856a196f9256093028dadb7092833265 /apps/oauth2 | |
parent | ccc39a41bbc2d9f9ff50a297a101fc55773d88ab (diff) | |
download | nextcloud-server-9f037c3ef352c150da129abc1119dea3c4219fd0.tar.gz nextcloud-server-9f037c3ef352c150da129abc1119dea3c4219fd0.zip |
chore(deps): Update openapi-extractor to v1.0.0
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/oauth2')
-rw-r--r-- | apps/oauth2/openapi.json | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/apps/oauth2/openapi.json b/apps/oauth2/openapi.json index f06f72b317b..cdf52de3f5e 100644 --- a/apps/oauth2/openapi.json +++ b/apps/oauth2/openapi.json @@ -38,35 +38,35 @@ "basic_auth": [] } ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "required": [ - "client_id", - "state", - "response_type" - ], - "properties": { - "client_id": { - "type": "string", - "description": "Client ID" - }, - "state": { - "type": "string", - "description": "State of the flow" - }, - "response_type": { - "type": "string", - "description": "Response type for the flow" - } - } - } + "parameters": [ + { + "name": "client_id", + "in": "query", + "description": "Client ID", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "state", + "in": "query", + "description": "State of the flow", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "response_type", + "in": "query", + "description": "Response type for the flow", + "required": true, + "schema": { + "type": "string" } } - }, + ], "responses": { "200": { "description": "Client not found", |