diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-02 13:47:19 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-02 13:47:19 +0100 |
commit | 00f99f74b1b875bb7ac6b0623994cabad4a59cc6 (patch) | |
tree | b35313775288889e35ea69ef2b456513768b8c11 /synapse/storage/__init__.py | |
parent | Merge branch 'neilj/mau_tracker' of github.com:matrix-org/synapse into neilj/... (diff) | |
download | synapse-00f99f74b1b875bb7ac6b0623994cabad4a59cc6.tar.xz |
insertion into monthly_active_users
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 04ff1f8006..2120f46ed5 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -39,6 +39,7 @@ from .filtering import FilteringStore from .group_server import GroupServerStore from .keys import KeyStore from .media_repository import MediaRepositoryStore +from .monthly_active_users import MonthlyActiveUsersStore from .openid import OpenIdStore from .presence import PresenceStore, UserPresenceState from .profile import ProfileStore @@ -87,6 +88,7 @@ class DataStore(RoomMemberStore, RoomStore, UserDirectoryStore, GroupServerStore, UserErasureStore, + MonthlyActiveUsersStore, ): def __init__(self, db_conn, hs): |