Skip to content

Commit

Permalink
fixup! feat(federation): Allow to mark a conversation as unread again
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed Feb 28, 2024
1 parent a312ce8 commit 93f18f5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/chat.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,8 @@ See [OCP\RichObjectStrings\Definitions](https://github.com/nextcloud/server/blob
+ `404 Not Found` When the room could not be found for the participant,
or the participant is a guest.

- Data in case of `200 OK`: See array definition in [Get user´s conversations](conversation.md#get-user-s-conversations)

- Header:

| field | type | Description |
Expand Down
5 changes: 4 additions & 1 deletion openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -6297,6 +6297,7 @@
"chat"
],
"security": [
{},
{
"bearer_auth": []
},
Expand Down Expand Up @@ -6365,7 +6366,9 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"$ref": "#/components/schemas/Room"
}
}
}
}
Expand Down
5 changes: 4 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6179,6 +6179,7 @@
"chat"
],
"security": [
{},
{
"bearer_auth": []
},
Expand Down Expand Up @@ -6247,7 +6248,9 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"$ref": "#/components/schemas/Room"
}
}
}
}
Expand Down

0 comments on commit 93f18f5

Please sign in to comment.