Merge pull request #47551 from nextcloud/fix/files_sharing/share-nullable-label

fix(files_sharing): Make share labels nullable
This commit is contained in:
Joas Schilling 2024-08-29 08:43:34 +02:00 committed by GitHub
commit 23efda9111
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -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,

View file

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