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/dashboard | |
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/dashboard')
-rw-r--r-- | apps/dashboard/openapi.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/dashboard/openapi.json b/apps/dashboard/openapi.json index cf706f1f55d..594aed76793 100644 --- a/apps/dashboard/openapi.json +++ b/apps/dashboard/openapi.json @@ -231,11 +231,15 @@ } }, { - "name": "widgets", + "name": "widgets[]", "in": "query", "description": "Limit results to specific widgets", "schema": { - "type": "string" + "type": "array", + "default": [], + "items": { + "type": "string" + } } }, { |