Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gajim/common/events.py')
-rw-r--r--gajim/common/events.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/gajim/common/events.py b/gajim/common/events.py
index b7a6dbb4a..b227a0106 100644
--- a/gajim/common/events.py
+++ b/gajim/common/events.py
@@ -304,6 +304,14 @@ class DisplayedReceived(ApplicationEvent):
@dataclass
+class ReactionReceived(ApplicationEvent):
+ name: str = field(init=False, default='reaction-received')
+ account: str
+ jid: JID
+ reaction_id: str
+
+
+@dataclass
class HttpAuth(ApplicationEvent):
name: str = field(init=False, default='http-auth')
client: 'Client'