mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-17 06:54:21 -05:00
This commit is contained in:
parent
56834ab779
commit
7bf2d6c268
1
changelog.d/11770.feature
Normal file
1
changelog.d/11770.feature
Normal file
@ -0,0 +1 @@
|
||||
Add a flag to the `synapse_review_recent_signups` script to ignore and filter appservice users.
|
@ -979,18 +979,16 @@ class RegistrationHandler:
|
||||
if (
|
||||
self.hs.config.email.email_enable_notifs
|
||||
and self.hs.config.email.email_notif_for_new_users
|
||||
and token
|
||||
):
|
||||
# Pull the ID of the access token back out of the db
|
||||
# It would really make more sense for this to be passed
|
||||
# up when the access token is saved, but that's quite an
|
||||
# invasive change I'd rather do separately.
|
||||
if token:
|
||||
user_tuple = await self.store.get_user_by_access_token(token)
|
||||
# The token better still exist.
|
||||
assert user_tuple
|
||||
token_id = user_tuple.token_id
|
||||
else:
|
||||
token_id = None
|
||||
|
||||
await self.pusher_pool.add_pusher(
|
||||
user_id=user_id,
|
||||
|
Loading…
Reference in New Issue
Block a user