
Aug. 1, 2025
6:04 a.m.
On 2025-08-01 02:46, Mark Sapiro wrote:
And here I had
return super().is_open_for_signup(self, req)
which should return the is_open_for_signup result from allauth.account.adapter.DefaultAccountAdapter but since that result is an unconditional True, what you have is OK too.
Actually, that too was wrong. It should have been
return super().is_open_for_signup(req)
but that is now moot as
return True
is fine.
Ahhh. Thank you for letting me know that. I had used "return True" in an act of desperation. Is good to be shown how to do it right.
:-)