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:
parent
5c360e0367
commit
e8e5bd6161
2 changed files with 1 additions and 7 deletions
apps/user_status
|
@ -22,7 +22,6 @@ namespace OCA\UserStatus;
|
|||
* icon: string,
|
||||
* message: string,
|
||||
* clearAt: ?UserStatusClearAt,
|
||||
* visible: ?bool,
|
||||
* }
|
||||
*
|
||||
* @psalm-type UserStatusType = "online"|"away"|"dnd"|"busy"|"offline"|"invisible"
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue