2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-07-04 06:00:38 +00:00

Fix signup warning (#12213)

- Should only fire on an actual signup attempt
This commit is contained in:
Oliver
2026-06-20 20:13:14 +10:00
committed by GitHub
parent c4d67b65d7
commit 5eaac37303
@@ -114,9 +114,12 @@ class RegistrationMixin:
""" """
if registration_enabled(self.REGISTRATION_SETTING): if registration_enabled(self.REGISTRATION_SETTING):
return True return True
logger.warning( # Only warn when this is an actual signup submission, not when called as
f'INVE-W12: Signup attempt blocked, because registration is disabled via setting {self.REGISTRATION_SETTING}.' # a feature-availability check during login or other auth flows.
) if request and request.method == 'POST' and 'signup' in request.path:
logger.warning(
f'INVE-W12: Signup attempt blocked, because registration is disabled via setting {self.REGISTRATION_SETTING}.'
)
return False return False
def clean_email(self, email): def clean_email(self, email):