You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But cannot call API for said purpose since SendConfirmationEmailView is decorated with login_required
Expected behavior
Ideally, login_required decorator should be removed since the typical use case here is for resending email
Screenshots (if applicable)
I've attempted to override this decorator with a subclass to set decorators = (), but it doesn't seem to work.
Of course, a separate blueprint/url could be created to workaround issue, but would be far from optimal
The text was updated successfully, but these errors were encountered:
So I'm might be wrong here, but I think it's correct that the view requires login. The view is for when a confirmation is NOT required to login. In which are the user can log in (if they remember their password) and ask to resend the confirmation email.
Instead a user should reset their password (which will also send an email) if the link expired. However, here might be a bug that it seems like the ForgotPasswordView requires an authenticated user.
Package version (if known): latest
Describe the bug
The "send-confirmation-email" API requires login, which prevents the most frequent use case which is to send confirm email again
Steps to Reproduce
Expected behavior
Ideally, login_required decorator should be removed since the typical use case here is for resending email
Screenshots (if applicable)
I've attempted to override this decorator with a subclass to set decorators = (), but it doesn't seem to work.
Of course, a separate blueprint/url could be created to workaround issue, but would be far from optimal
The text was updated successfully, but these errors were encountered: