mirror of
https://github.com/nextcloud/server.git
synced 2026-03-28 13:23:49 -04:00
Merge pull request #47593 from nextcloud/backport/47551/stable30
[stable30] fix(files_sharing): Make share labels nullable
This commit is contained in:
commit
e9f3cb38ce
2 changed files with 3 additions and 2 deletions
|
|
@ -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…
Reference in a new issue