diff options
author | Neil Johnson <neil@matrix.org> | 2018-09-12 16:22:15 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-09-12 16:22:15 +0100 |
commit | 8decd6233dabd87160794949ffd95282e60ab01e (patch) | |
tree | b1a0ad2aa26d1fe93b80787d6a9d5b2b3067c5f8 /synapse/storage | |
parent | towncrier (diff) | |
download | synapse-8decd6233dabd87160794949ffd95282e60ab01e.tar.xz |
improve naming
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/monthly_active_users.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/monthly_active_users.py b/synapse/storage/monthly_active_users.py index 53d125d305..59580949f1 100644 --- a/synapse/storage/monthly_active_users.py +++ b/synapse/storage/monthly_active_users.py @@ -147,7 +147,7 @@ class MonthlyActiveUsersStore(SQLBaseStore): return self.runInteraction("count_users", _count_users) @defer.inlineCallbacks - def get_reserved_real_user_account(self): + def get_registered_reserved_users_count(self): """Of the reserved threepids defined in config, how many are associated with registered users? |