summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-06-07 16:37:19 +0100
committerRichard van der Hoff <richard@matrix.org>2018-06-12 09:52:22 +0100
commit3ff8a619f5ed9d12b72858bfbbe3859e77dd064c (patch)
tree9b6c1f290f5363d1634089e4c8c6fc760849246d /synapse/storage/__init__.py
parentsimplify get_persisted_pdu (diff)
downloadsynapse-3ff8a619f5ed9d12b72858bfbbe3859e77dd064c.tar.xz
UserErasureStore
to store which users have been erased
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):