Skip to content

Commit

Permalink
Merge pull request #47551 from nextcloud/fix/files_sharing/share-null…
Browse files Browse the repository at this point in the history
…able-label

fix(files_sharing): Make share labels nullable
  • Loading branch information
nickvergessen authored Aug 29, 2024
2 parents d48c6aa + 01c4fa3 commit 23efda9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/files_sharing/lib/ResponseDefinitions.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* item_size: float|int,
* item_source: int,
* item_type: 'file'|'folder',
* label: string,
* label: ?string,
* mail_send: 0|1,
* mimetype: string,
* note: string,
Expand Down
3 changes: 2 additions & 1 deletion apps/files_sharing/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,8 @@
]
},
"label": {
"type": "string"
"type": "string",
"nullable": true
},
"mail_send": {
"type": "integer",
Expand Down

0 comments on commit 23efda9

Please sign in to comment.