mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-07 11:12:15 -04:00
Add store for server certificates and keys
This commit is contained in:
parent
b09e531159
commit
d7ae9b90a0
3 changed files with 135 additions and 1 deletions
|
@ -33,6 +33,7 @@ from .roommember import RoomMemberStore
|
|||
from .stream import StreamStore
|
||||
from .pdu import StatePduStore, PduStore
|
||||
from .transactions import TransactionStore
|
||||
from .keys import KeyStore
|
||||
|
||||
import json
|
||||
import logging
|
||||
|
@ -45,7 +46,7 @@ logger = logging.getLogger(__name__)
|
|||
class DataStore(RoomMemberStore, RoomStore,
|
||||
RegistrationStore, StreamStore, ProfileStore, FeedbackStore,
|
||||
PresenceStore, PduStore, StatePduStore, TransactionStore,
|
||||
DirectoryStore):
|
||||
DirectoryStore, KeyStore):
|
||||
|
||||
def __init__(self, hs):
|
||||
super(DataStore, self).__init__(hs)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue