mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-16 12:00:03 +03:00
Merge pull request #3881 from vector-im/feature/bma/requiredBody
Send an empty body for POST rooms/{roomId}/receipt/{receiptType}/{eve…
This commit is contained in:
commit
b4979e0bfb
2 changed files with 3 additions and 1 deletions
1
changelog.d/3789.bugfix
Normal file
1
changelog.d/3789.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Send an empty body for POST rooms/{roomId}/receipt/{receiptType}/{eventId}
|
|
@ -159,7 +159,8 @@ internal interface RoomAPI {
|
|||
@POST(NetworkConstants.URI_API_PREFIX_PATH_R0 + "rooms/{roomId}/receipt/{receiptType}/{eventId}")
|
||||
suspend fun sendReceipt(@Path("roomId") roomId: String,
|
||||
@Path("receiptType") receiptType: String,
|
||||
@Path("eventId") eventId: String)
|
||||
@Path("eventId") eventId: String,
|
||||
@Body body: JsonDict = emptyMap())
|
||||
|
||||
/**
|
||||
* Invite a user to the given room.
|
||||
|
|
Loading…
Add table
Reference in a new issue