fix(files_sharing): Make share labels nullable

Signed-off-by: provokateurin <kate@provokateurin.de>
pull/47551/head
provokateurin 2 years ago
parent e68f77ea6c
commit 01c4fa3ba8
No known key found for this signature in database
  1. 2
      apps/files_sharing/lib/ResponseDefinitions.php
  2. 3
      apps/files_sharing/openapi.json

@ -28,7 +28,7 @@ namespace OCA\Files_Sharing;
* item_size: float|int,
* item_source: int,
* item_type: 'file'|'folder',
* label: string,
* label: ?string,
* mail_send: 0|1,
* mimetype: string,
* note: string,

@ -578,7 +578,8 @@
]
},
"label": {
"type": "string"
"type": "string",
"nullable": true
},
"mail_send": {
"type": "integer",

Loading…
Cancel
Save