diff options
author | Hamza Mahjoubi <hamzamahjoubi221@gmail.com> | 2024-07-03 10:47:59 +0200 |
---|---|---|
committer | Hamza Mahjoubi <hamzamahjoubi221@gmail.com> | 2024-07-03 12:31:53 +0200 |
commit | 85a3b27cf956ebdb61f569ac04b7feb2d4835b37 (patch) | |
tree | a6f7fdd821cb601ef4f322ee90b9e46d6be04ec8 /apps/dav/openapi.json | |
parent | 84699048b5626373d9e3e859bc48d9b355018fb9 (diff) | |
download | nextcloud-server-85a3b27cf956ebdb61f569ac04b7feb2d4835b37.tar.gz nextcloud-server-85a3b27cf956ebdb61f569ac04b7feb2d4835b37.zip |
Fix: Make out of office replacement nullable
Signed-off-by: Hamza Mahjoubi <hamzamahjoubi221@gmail.com>
Diffstat (limited to 'apps/dav/openapi.json')
-rw-r--r-- | apps/dav/openapi.json | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/dav/openapi.json b/apps/dav/openapi.json index d565035b8ac..946a603f44d 100644 --- a/apps/dav/openapi.json +++ b/apps/dav/openapi.json @@ -145,10 +145,12 @@ "type": "string" }, "replacementUserId": { - "type": "string" + "type": "string", + "nullable": true }, "replacementUserDisplayName": { - "type": "string" + "type": "string", + "nullable": true } } } @@ -578,12 +580,12 @@ }, "replacementUserId": { "type": "string", - "default": "", + "nullable": true, "description": "User id of the replacement user" }, "replacementUserDisplayName": { "type": "string", - "default": "", + "nullable": true, "description": "Display name of the replacement user" } } |