summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-12-10 17:51:15 +0000
committerDavid Baker <dave@matrix.org>2015-12-10 17:51:15 +0000
commitaa667ee396c473f497b084655d47b2a9520a538a (patch)
tree70ebebbe67f710c164fe4dd92f5e9833777d49b0 /synapse/storage/__init__.py
parentHaving consulted The Erikle, this should go at the end of on_receive_pdu, oth... (diff)
downloadsynapse-aa667ee396c473f497b084655d47b2a9520a538a.tar.xz
Save event actions to the db
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r--synapse/storage/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py
index c46b653f11..a112dd237f 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -33,6 +33,7 @@ from .pusher import PusherStore
 from .push_rule import PushRuleStore
 from .media_repository import MediaRepositoryStore
 from .rejections import RejectionsStore
+from .event_actions import EventActionsStore
 
 from .state import StateStore
 from .signatures import SignatureStore
@@ -75,6 +76,7 @@ class DataStore(RoomMemberStore, RoomStore,
                 SearchStore,
                 TagsStore,
                 AccountDataStore,
+                EventActionsStore
                 ):
 
     def __init__(self, hs):