diff options
Diffstat (limited to 'src/handler.py')
-rw-r--r-- | src/handler.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/handler.py b/src/handler.py index 5d7831e7..8942ae7c 100644 --- a/src/handler.py +++ b/src/handler.py @@ -32,6 +32,7 @@ class Handler(Singleton): 'on-connected': list(), # At the end of a successful connection process. # emitted when presence confirmation is received + # Args: jid 'join-room': list(), # Join a room. @@ -45,6 +46,10 @@ class Handler(Singleton): # A message is received # Args: the stanza object + 'room-iq': list(), + # An iq is received + # Args: the stanza object + # 'xmpp-presence-handler': list(), # # A presence is received # # Args: the stanza object |