mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-11 09:32:42 -05:00
Move storage of user filters into real datastore layer; now have to mock it out in the REST-level tests
This commit is contained in:
parent
059651efa1
commit
54e513b4e6
5 changed files with 79 additions and 27 deletions
|
|
@ -30,9 +30,9 @@ from .transactions import TransactionStore
|
|||
from .keys import KeyStore
|
||||
from .event_federation import EventFederationStore
|
||||
from .media_repository import MediaRepositoryStore
|
||||
|
||||
from .state import StateStore
|
||||
from .signatures import SignatureStore
|
||||
from .filtering import FilteringStore
|
||||
|
||||
from syutil.base64util import decode_base64
|
||||
from syutil.jsonutil import encode_canonical_json
|
||||
|
|
@ -82,6 +82,7 @@ class DataStore(RoomMemberStore, RoomStore,
|
|||
DirectoryStore, KeyStore, StateStore, SignatureStore,
|
||||
EventFederationStore,
|
||||
MediaRepositoryStore,
|
||||
FilteringStore,
|
||||
):
|
||||
|
||||
def __init__(self, hs):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue