0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-23 08:28:36 +00:00

Merge pull request from nextcloud/backport/45632/stable29

This commit is contained in:
Kate 2024-06-06 12:52:22 +02:00 committed by GitHub
commit b9c5f6a326
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View file

@ -72,7 +72,7 @@ namespace OCA\Core;
*
* @psalm-type CoreResource = array{
* richObjectType: string,
* richObject: array<string, mixed>,
* richObject: array<string, ?mixed>,
* openGraphObject: CoreOpenGraphObject,
* accessible: bool,
* }
@ -85,7 +85,7 @@ namespace OCA\Core;
*
* @psalm-type CoreReference = array{
* richObjectType: string,
* richObject: array<string, mixed>,
* richObject: array<string, ?mixed>,
* openGraphObject: CoreOpenGraphObject,
* accessible: bool,
* }

View file

@ -356,7 +356,8 @@
"richObject": {
"type": "object",
"additionalProperties": {
"type": "object"
"type": "object",
"nullable": true
}
},
"openGraphObject": {
@ -414,7 +415,8 @@
"richObject": {
"type": "object",
"additionalProperties": {
"type": "object"
"type": "object",
"nullable": true
}
},
"openGraphObject": {