Fix signup warning (#12213)
- Should only fire on an actual signup attempt
This commit is contained in:
parent
c4d67b65d7
commit
5eaac37303
|
|
@ -114,6 +114,9 @@ class RegistrationMixin:
|
|||
"""
|
||||
if registration_enabled(self.REGISTRATION_SETTING):
|
||||
return True
|
||||
# Only warn when this is an actual signup submission, not when called as
|
||||
# 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}.'
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue