0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-24 08:56:48 +00:00

fix(user_status): Remove non-existent "visible" field from UserStatusPredefined

Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
provokateurin 2024-12-11 10:23:49 +01:00
parent 5c360e0367
commit e8e5bd6161
No known key found for this signature in database
2 changed files with 1 additions and 7 deletions

View file

@ -22,7 +22,6 @@ namespace OCA\UserStatus;
* icon: string,
* message: string,
* clearAt: ?UserStatusClearAt,
* visible: ?bool,
* }
*
* @psalm-type UserStatusType = "online"|"away"|"dnd"|"busy"|"offline"|"invisible"

View file

@ -111,8 +111,7 @@
"id",
"icon",
"message",
"clearAt",
"visible"
"clearAt"
],
"properties": {
"id": {
@ -127,10 +126,6 @@
"clearAt": {
"$ref": "#/components/schemas/ClearAt",
"nullable": true
},
"visible": {
"type": "boolean",
"nullable": true
}
}
},