diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-07-31 17:03:06 +0200 |
---|---|---|
committer | Kate <26026535+provokateurin@users.noreply.github.com> | 2023-08-03 10:58:16 +0200 |
commit | 89c941f65e01898cd797631bec9719719d587c97 (patch) | |
tree | 9a0e7d1ca0654476890c4065202f4ba9ce765c6a /apps/provisioning_api | |
parent | 90bb0a26f4c6a689015a8293c021ef7591933b91 (diff) | |
download | nextcloud-server-89c941f65e01898cd797631bec9719719d587c97.tar.gz nextcloud-server-89c941f65e01898cd797631bec9719719d587c97.zip |
Fix OpenAPI specs
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'apps/provisioning_api')
-rw-r--r-- | apps/provisioning_api/openapi.json | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/apps/provisioning_api/openapi.json b/apps/provisioning_api/openapi.json index 6eb16aa6ad1..8a0e57d682a 100644 --- a/apps/provisioning_api/openapi.json +++ b/apps/provisioning_api/openapi.json @@ -1781,19 +1781,27 @@ } }, { - "name": "groups", + "name": "groups[]", "in": "query", "description": "Groups of the user", "schema": { - "type": "string" + "type": "array", + "default": [], + "items": { + "type": "string" + } } }, { - "name": "subadmin", + "name": "subadmin[]", "in": "query", "description": "Groups where the user is subadmin", "schema": { - "type": "string" + "type": "array", + "default": [], + "items": { + "type": "string" + } } }, { @@ -3563,7 +3571,7 @@ { "name": "app", "in": "path", - "description": "ID if the app", + "description": "ID of the app", "required": true, "schema": { "type": "string" @@ -4260,12 +4268,15 @@ ], "parameters": [ { - "name": "configKeys", + "name": "configKeys[]", "in": "query", "description": "Keys to delete", "required": true, "schema": { - "type": "string" + "type": "array", + "items": { + "type": "string" + } } }, { |