From 70c4b7528d73d44d82d4d030b6004ff259c98821 Mon Sep 17 00:00:00 2001 From: Valere Date: Mon, 20 May 2019 12:49:35 +0200 Subject: [PATCH] Fix doc --- .../api/session/room/model/annotation/ReactionService.kt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/matrix-sdk-android/src/main/java/im/vector/matrix/android/api/session/room/model/annotation/ReactionService.kt b/matrix-sdk-android/src/main/java/im/vector/matrix/android/api/session/room/model/annotation/ReactionService.kt index 750b9c4d..ace61159 100644 --- a/matrix-sdk-android/src/main/java/im/vector/matrix/android/api/session/room/model/annotation/ReactionService.kt +++ b/matrix-sdk-android/src/main/java/im/vector/matrix/android/api/session/room/model/annotation/ReactionService.kt @@ -32,14 +32,20 @@ interface ReactionService { * Undo a reaction (emoji) to the targetedEvent. * @param reaction the reaction (preferably emoji) * @param targetEventId the id of the event being reacted + * @param myUserId used to know if a reaction event was made by the user */ fun undoReaction(reaction: String, targetEventId: String, myUserId: String)//: Cancelable /** - * Undo a reaction (emoji) to the targetedEvent. + * Update a quick reaction (toggle). + * If you have reacted with agree and then you click on disagree, this call will delete(redact) + * the disagree and add the agree + * If you click on a reaction that you already reacted with, it will undo it * @param reaction the reaction (preferably emoji) + * @param oppositeReaction the opposite reaction(preferably emoji) * @param targetEventId the id of the event being reacted + * @param myUserId used to know if a reaction event was made by the user */ fun updateQuickReaction(reaction: String, oppositeReaction: String, targetEventId: String, myUserId: String)