diff options
author | provokateurin <kate@provokateurin.de> | 2024-08-19 11:08:28 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-08-21 11:07:50 +0200 |
commit | ff10f9f60f777407ecf8ac8901339e985e4d49b5 (patch) | |
tree | 7cd27ea42b4b22288bdfcf3212aa921a4762848f /apps/user_status | |
parent | cf56874cb1cb6150eadaf673474785e6b86937f7 (diff) | |
download | nextcloud-server-ff10f9f60f777407ecf8ac8901339e985e4d49b5.tar.gz nextcloud-server-ff10f9f60f777407ecf8ac8901339e985e4d49b5.zip |
chore(deps): Update openapi-extractor to v1.0.0
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/user_status')
-rw-r--r-- | apps/user_status/openapi.json | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/apps/user_status/openapi.json b/apps/user_status/openapi.json index cbaec7d7731..8b631156709 100644 --- a/apps/user_status/openapi.json +++ b/apps/user_status/openapi.json @@ -424,32 +424,28 @@ "basic_auth": [] } ], - "requestBody": { - "required": false, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "limit": { - "type": "integer", - "format": "int64", - "nullable": true, - "description": "Maximum number of statuses to find" - }, - "offset": { - "type": "integer", - "format": "int64", - "nullable": true, - "description": "Offset for finding statuses" - } - } - } - } - } - }, "parameters": [ { + "name": "limit", + "in": "query", + "description": "Maximum number of statuses to find", + "schema": { + "type": "integer", + "format": "int64", + "nullable": true + } + }, + { + "name": "offset", + "in": "query", + "description": "Offset for finding statuses", + "schema": { + "type": "integer", + "format": "int64", + "nullable": true + } + }, + { "name": "OCS-APIRequest", "in": "header", "description": "Required to be true for the API request to pass", |