Skip to content

Commit

Permalink
fix(files_sharing): Make share labels nullable
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin committed Aug 27, 2024
1 parent e68f77e commit 01c4fa3
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 01c4fa3

Please sign in to comment.