diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-31 17:11:11 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-31 17:11:11 +0100 |
commit | 0b01281e77aee7e69925f36dbb6a798772a98a45 (patch) | |
tree | da400c68b3eca4d6db8ce3ddaa14921c1d66d2a3 /synapse/storage | |
parent | fix reference to is_threepid_reserved (diff) | |
download | synapse-0b01281e77aee7e69925f36dbb6a798772a98a45.tar.xz |
move threepid checker to config, add missing yields
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/monthly_active_users.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/synapse/storage/monthly_active_users.py b/synapse/storage/monthly_active_users.py index 173867c4b1..c7899d7fd2 100644 --- a/synapse/storage/monthly_active_users.py +++ b/synapse/storage/monthly_active_users.py @@ -219,17 +219,3 @@ class MonthlyActiveUsersStore(SQLBaseStore): yield self.upsert_monthly_active_user(user_id) elif now - last_seen_timestamp > LAST_SEEN_GRANULARITY: yield self.upsert_monthly_active_user(user_id) - - def is_threepid_reserved(self, threepid): - """Check the threepid against the reserved threepid config - Args: - threepid(dict) - The threepid to test for - Returns: - boolean Is the threepid undertest reserved_user - """ - for tp in self.hs.config.mau_limits_reserved_threepids: - if (threepid['medium'] == tp['medium'] - and threepid['address'] == tp['address']): - return True - else: - return False |