diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-10-28 16:06:57 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-10-28 16:06:57 +0000 |
commit | 892e70ec8404865b4b1e6cf4eef7a3ada7114149 (patch) | |
tree | d10a157e7243d49e70cc2392f581cfd861a1d90b /synapse/storage/__init__.py | |
parent | Merge pull request #328 from matrix-org/erikj/search (diff) | |
download | synapse-892e70ec8404865b4b1e6cf4eef7a3ada7114149.tar.xz |
Add APIs for adding and removing tags from rooms
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index a1bd9c4ce9..e7443f2838 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -41,6 +41,7 @@ from .end_to_end_keys import EndToEndKeyStore from .receipts import ReceiptsStore from .search import SearchStore +from .tags import TagsStore import logging @@ -71,6 +72,7 @@ class DataStore(RoomMemberStore, RoomStore, ReceiptsStore, EndToEndKeyStore, SearchStore, + TagsStore, ): def __init__(self, hs): |