diff options
author | Will Hunt <will@half-shot.uk> | 2022-05-05 12:11:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 07:11:52 -0400 |
commit | cc7656099d882735507c41ea6efcba961f53b7ec (patch) | |
tree | e2ccb4d284fc7d2e6d63ab05dcaff2ae43a4a889 /synapse | |
parent | Reduce log spam when running multiple event persisters (#12610) (diff) | |
download | synapse-cc7656099d882735507c41ea6efcba961f53b7ec.tar.xz |
Fix typo in some instances of enable_registration_token_3pid_bypass. (#12639)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/config/registration.py | 4 | ||||
-rw-r--r-- | synapse/handlers/ui_auth/checkers.py | 2 | ||||
-rw-r--r-- | synapse/rest/client/register.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/synapse/config/registration.py b/synapse/config/registration.py index 70eb7e6a97..d2d0425e62 100644 --- a/synapse/config/registration.py +++ b/synapse/config/registration.py @@ -43,8 +43,8 @@ class RegistrationConfig(Config): self.registration_requires_token = config.get( "registration_requires_token", False ) - self.enable_registration_token_3pid_bypasss = config.get( - "enable_registration_token_3pid_bypasss", False + self.enable_registration_token_3pid_bypass = config.get( + "enable_registration_token_3pid_bypass", False ) self.registration_shared_secret = config.get("registration_shared_secret") diff --git a/synapse/handlers/ui_auth/checkers.py b/synapse/handlers/ui_auth/checkers.py index e2a441066d..05cebb5d4d 100644 --- a/synapse/handlers/ui_auth/checkers.py +++ b/synapse/handlers/ui_auth/checkers.py @@ -258,7 +258,7 @@ class RegistrationTokenAuthChecker(UserInteractiveAuthChecker): self.hs = hs self._enabled = bool( hs.config.registration.registration_requires_token - ) or bool(hs.config.registration.enable_registration_token_3pid_bypasss) + ) or bool(hs.config.registration.enable_registration_token_3pid_bypass) self.store = hs.get_datastores().main def is_enabled(self) -> bool: diff --git a/synapse/rest/client/register.py b/synapse/rest/client/register.py index 47b6db1ebf..e8e51a9c66 100644 --- a/synapse/rest/client/register.py +++ b/synapse/rest/client/register.py @@ -930,7 +930,7 @@ def _calculate_registration_flows( flows.append([LoginType.MSISDN, LoginType.EMAIL_IDENTITY]) # Add a flow that doesn't require any 3pids, if the config requests it. - if config.registration.enable_registration_token_3pid_bypasss: + if config.registration.enable_registration_token_3pid_bypass: flows.append([LoginType.REGISTRATION_TOKEN]) # Prepend m.login.terms to all flows if we're requiring consent |