summary refs log tree commit diff
path: root/synapse/api/auth.py
diff options
context:
space:
mode:
authorNeil Johnson <neil@matrix.org>2018-08-09 18:02:12 +0100
committerNeil Johnson <neil@matrix.org>2018-08-09 18:02:12 +0100
commit885ea9c602ca4002385a6d73c94c35e0958de809 (patch)
treecf6ccfbd6757cf4e19f83aa6925527e7b9f122dc /synapse/api/auth.py
parentfix errant parenthesis (diff)
downloadsynapse-885ea9c602ca4002385a6d73c94c35e0958de809.tar.xz
rename _user_last_seen_monthly_active
Diffstat (limited to 'synapse/api/auth.py')
-rw-r--r--synapse/api/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py

index df6022ff69..c31c6a6a08 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py
@@ -789,7 +789,7 @@ class Auth(object): if self.hs.config.limit_usage_by_mau is True: # If the user is already part of the MAU cohort if user_id: - timestamp = yield self.store._user_last_seen_monthly_active(user_id) + timestamp = yield self.store.user_last_seen_monthly_active(user_id) if timestamp: return # Else if there is no room in the MAU bucket, bail