diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-05-17 15:58:46 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-05-17 15:58:46 +0100 |
commit | 0cb441fedd77b42f307745a441b804fee6386cb5 (patch) | |
tree | 5b240661fd780a583871812dd606491c1b38683f /synapse/handlers/__init__.py | |
parent | Merge pull request #791 from matrix-org/markjh/app_service_config (diff) | |
download | synapse-0cb441fedd77b42f307745a441b804fee6386cb5.tar.xz |
Move typing handler out of the Handlers object
Diffstat (limited to 'synapse/handlers/__init__.py')
-rw-r--r-- | synapse/handlers/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/handlers/__init__.py b/synapse/handlers/__init__.py index e1fc9a58ad..9442ae6f1d 100644 --- a/synapse/handlers/__init__.py +++ b/synapse/handlers/__init__.py @@ -25,7 +25,6 @@ from .events import EventStreamHandler, EventHandler from .federation import FederationHandler from .profile import ProfileHandler from .directory import DirectoryHandler -from .typing import TypingNotificationHandler from .admin import AdminHandler from .appservice import ApplicationServicesHandler from .auth import AuthHandler @@ -53,7 +52,6 @@ class Handlers(object): self.profile_handler = ProfileHandler(hs) self.room_list_handler = RoomListHandler(hs) self.directory_handler = DirectoryHandler(hs) - self.typing_notification_handler = TypingNotificationHandler(hs) self.admin_handler = AdminHandler(hs) self.receipts_handler = ReceiptsHandler(hs) asapi = ApplicationServiceApi(hs) |