diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-03-09 17:01:19 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-03-09 17:01:19 +0000 |
commit | 21fd84dcb8645a555cc35adb8b2a5a68536b8087 (patch) | |
tree | b400ce68a36fcd01e3f4fca568a43f6ae55e9a36 /synapse/storage/__init__.py | |
parent | Finish appservice txn storage impl and tests. (diff) | |
download | synapse-21fd84dcb8645a555cc35adb8b2a5a68536b8087.tar.xz |
Use seconds; start gluing in the AS scheduler into the AS handler.
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index dfce5224a9..6c159b52a0 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -18,7 +18,9 @@ from twisted.internet import defer from synapse.util.logutils import log_function from synapse.api.constants import EventTypes -from .appservice import ApplicationServiceStore +from .appservice import ( + ApplicationServiceStore, ApplicationServiceTransactionStore +) from .directory import DirectoryStore from .feedback import FeedbackStore from .presence import PresenceStore @@ -79,7 +81,8 @@ class DataStore(RoomMemberStore, RoomStore, RejectionsStore, FilteringStore, PusherStore, - PushRuleStore + PushRuleStore, + ApplicationServiceTransactionStore ): def __init__(self, hs): |