Send an empty body for POST rooms/{roomId}/receipt/{receiptType}/{eventId}
This commit is contained in:
parent
8a38f1ca04
commit
c301bcf4b6
|
@ -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}")
|
@POST(NetworkConstants.URI_API_PREFIX_PATH_R0 + "rooms/{roomId}/receipt/{receiptType}/{eventId}")
|
||||||
suspend fun sendReceipt(@Path("roomId") roomId: String,
|
suspend fun sendReceipt(@Path("roomId") roomId: String,
|
||||||
@Path("receiptType") receiptType: String,
|
@Path("receiptType") receiptType: String,
|
||||||
@Path("eventId") eventId: String)
|
@Path("eventId") eventId: String,
|
||||||
|
@Body body: JsonDict = emptyMap())
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invite a user to the given room.
|
* Invite a user to the given room.
|
||||||
|
|
Loading…
Reference in New Issue