summary refs log tree commit diff
path: root/synapse/util/threepids.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-09-29 17:13:58 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2020-09-29 17:13:58 +0100
commit0b8f4c328ba68bd7d8be6395de95ffd685d9dfa4 (patch)
tree09ebeb67e353b20430555078289f3a6fb6a5234c /synapse/util/threepids.py
parentAdd some logging around checking 3PIDs are allowed (diff)
downloadsynapse-0b8f4c328ba68bd7d8be6395de95ffd685d9dfa4.tar.xz
Add argument specifying whether 3pid check is happening during registration
Diffstat (limited to 'synapse/util/threepids.py')
-rw-r--r--synapse/util/threepids.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/util/threepids.py b/synapse/util/threepids.py

index c7459802fd..47327360f8 100644 --- a/synapse/util/threepids.py +++ b/synapse/util/threepids.py
@@ -19,7 +19,7 @@ import re logger = logging.getLogger(__name__) -async def check_3pid_allowed(hs, medium, address): +async def check_3pid_allowed(hs, medium, address, during_registration: bool = False): """Checks whether a given format of 3PID is allowed to be used on this HS Args: @@ -27,6 +27,8 @@ async def check_3pid_allowed(hs, medium, address): medium (str): 3pid medium - e.g. email, msisdn address (str): address within that medium (e.g. "wotan@matrix.org") msisdns need to first have been canonicalised + during_registration: Whether this request has been made while registering a new + user. Returns: bool: whether the 3PID medium/address is allowed to be added to this HS """