diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-09 14:50:12 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-09 14:50:12 +0200 |
commit | afcebd1e928f6131122bc166af2b37c24717891f (patch) | |
tree | f87dc34c46e3928be775de478b3c8cb540a9b52c /apps/provisioning_api/openapi.json | |
parent | 61da2b97d0eaa194a9a83138c9a66a5d615c8f45 (diff) | |
download | nextcloud-server-afcebd1e928f6131122bc166af2b37c24717891f.tar.gz nextcloud-server-afcebd1e928f6131122bc166af2b37c24717891f.zip |
Fix api description for Users#getDisabledUsers
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/provisioning_api/openapi.json')
-rw-r--r-- | apps/provisioning_api/openapi.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/provisioning_api/openapi.json b/apps/provisioning_api/openapi.json index 115189e8008..566e907bac1 100644 --- a/apps/provisioning_api/openapi.json +++ b/apps/provisioning_api/openapi.json @@ -2067,16 +2067,17 @@ { "name": "OCS-APIRequest", "in": "header", + "description": "Required to be true for the API request to pass", "required": true, "schema": { - "type": "string", - "default": "true" + "type": "boolean", + "default": true } } ], "responses": { "200": { - "description": "", + "description": "Disabled users details returned", "content": { "application/json": { "schema": { |