summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2018-06-22 15:06:44 +0100
committerGitHub <noreply@github.com>2018-06-22 15:06:44 +0100
commitce0d911156b355c5bf452120bfb08653dad96497 (patch)
treef473eea5f916d1ff056fecd7642a9461979752dd /synapse/storage/__init__.py
parentMerge pull request #3428 from matrix-org/erikj/persisted_pdu (diff)
parentFilter out erased messages (diff)
downloadsynapse-ce0d911156b355c5bf452120bfb08653dad96497.tar.xz
Merge pull request #3431 from matrix-org/rav/erasure_visibility
Support hiding events from deleted users
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 979fa22438..e843b702b9 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -20,6 +20,7 @@ import time
 import logging
 
 from synapse.storage.devices import DeviceStore
+from synapse.storage.user_erasure_store import UserErasureStore
 from .appservice import (
     ApplicationServiceStore, ApplicationServiceTransactionStore
 )
@@ -88,6 +89,7 @@ class DataStore(RoomMemberStore, RoomStore,
                 DeviceInboxStore,
                 UserDirectoryStore,
                 GroupServerStore,
+                UserErasureStore,
                 ):
 
     def __init__(self, db_conn, hs):