mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-09-29 01:49:30 -04:00
Add basic full text search impl.
This commit is contained in:
parent
db6e1e1fe3
commit
c85c912562
8 changed files with 268 additions and 1 deletions
|
@ -40,6 +40,7 @@ from .filtering import FilteringStore
|
|||
from .end_to_end_keys import EndToEndKeyStore
|
||||
|
||||
from .receipts import ReceiptsStore
|
||||
from .search import SearchStore
|
||||
|
||||
|
||||
import fnmatch
|
||||
|
@ -79,6 +80,7 @@ class DataStore(RoomMemberStore, RoomStore,
|
|||
EventsStore,
|
||||
ReceiptsStore,
|
||||
EndToEndKeyStore,
|
||||
SearchStore,
|
||||
):
|
||||
|
||||
def __init__(self, hs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue