mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-08 17:32:13 -04:00
Initial typing notification support - EDU federation, but no timers, and no actual push to clients
This commit is contained in:
parent
d63f775e06
commit
5eff05a4ce
3 changed files with 398 additions and 0 deletions
|
@ -23,6 +23,7 @@ from .login import LoginHandler
|
|||
from .profile import ProfileHandler
|
||||
from .presence import PresenceHandler
|
||||
from .directory import DirectoryHandler
|
||||
from .typing import TypingNotificationHandler
|
||||
|
||||
|
||||
class Handlers(object):
|
||||
|
@ -46,3 +47,4 @@ class Handlers(object):
|
|||
self.room_list_handler = RoomListHandler(hs)
|
||||
self.login_handler = LoginHandler(hs)
|
||||
self.directory_handler = DirectoryHandler(hs)
|
||||
self.typing_notification_handler = TypingNotificationHandler(hs)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue