diff options
author | Erik Johnston <erik@matrix.org> | 2019-05-16 09:34:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-16 09:34:12 +0100 |
commit | f201a30244db6369db80169be3258fa3c1f36150 (patch) | |
tree | dee49724772693585e4cb3ef2324e86ab00aaedd /synapse/storage/__init__.py | |
parent | Merge branch 'erikj/refactor_pagination_bounds' into erikj/reactions_base (diff) | |
parent | Actually check for None rather falsey (diff) | |
download | synapse-f201a30244db6369db80169be3258fa3c1f36150.tar.xz |
Merge pull request #5186 from matrix-org/erikj/simple_pagination
Add simple relations API
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 c432041b4e..7522d3fd57 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -49,6 +49,7 @@ from .pusher import PusherStore from .receipts import ReceiptsStore from .registration import RegistrationStore from .rejections import RejectionsStore +from .relations import RelationsStore from .room import RoomStore from .roommember import RoomMemberStore from .search import SearchStore @@ -99,6 +100,7 @@ class DataStore( GroupServerStore, UserErasureStore, MonthlyActiveUsersStore, + RelationsStore, ): def __init__(self, db_conn, hs): self.hs = hs |