diff options
author | David Baker <dbkr@users.noreply.github.com> | 2016-06-02 14:31:35 +0100 |
---|---|---|
committer | David Baker <dbkr@users.noreply.github.com> | 2016-06-02 14:31:35 +0100 |
commit | fb2193cc63c8297238423f0df547d4527a41eefc (patch) | |
tree | c62b3850a6fefbde1e8ab3bf63b8f279dd3075f0 /synapse/handlers/__init__.py | |
parent | Disable INCLUDE_ALL_UNREAD_NOTIFS (diff) | |
parent | Split out the auth handler (diff) | |
download | synapse-fb2193cc63c8297238423f0df547d4527a41eefc.tar.xz |
Merge pull request #817 from matrix-org/dbkr/split_out_auth_handler
Split out the auth handler
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 c0069e23d6..d28e07f0d9 100644 --- a/synapse/handlers/__init__.py +++ b/synapse/handlers/__init__.py @@ -24,7 +24,6 @@ from .federation import FederationHandler from .profile import ProfileHandler from .directory import DirectoryHandler from .admin import AdminHandler -from .auth import AuthHandler from .identity import IdentityHandler from .receipts import ReceiptsHandler from .search import SearchHandler @@ -50,7 +49,6 @@ class Handlers(object): self.directory_handler = DirectoryHandler(hs) self.admin_handler = AdminHandler(hs) self.receipts_handler = ReceiptsHandler(hs) - self.auth_handler = AuthHandler(hs) self.identity_handler = IdentityHandler(hs) self.search_handler = SearchHandler(hs) self.room_context_handler = RoomContextHandler(hs) |