diff options
author | Erik Johnston <erikj@jki.re> | 2018-06-25 14:37:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-25 14:37:01 +0100 |
commit | 33fdcfa957e64ec43bd866d09e12811140f75dcf (patch) | |
tree | 15dc74b7c90fa61cd53dff05eb19676a7bd5d935 /synapse/storage/__init__.py | |
parent | Remove all global reactor imports & pass it around explicitly (#3424) (diff) | |
parent | Add UserErasureWorkerStore to workers (diff) | |
download | synapse-33fdcfa957e64ec43bd866d09e12811140f75dcf.tar.xz |
Merge pull request #3441 from matrix-org/erikj/redo_erasure
Fix user erasure and re-enable
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 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): |