Browse Source

Redirect to index after activation request

Alec Nikolas Reiter 7 years ago
parent
commit
eba7794ff5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      flaskbb/auth/views.py

+ 1 - 1
flaskbb/auth/views.py

@@ -274,7 +274,7 @@ class RequestActivationToken(MethodView):
                         "your email address."
                     ), "success"
                 )
-                return redirect(url_for("auth.activate_account"))
+                return redirect(url_for('forum.index'))
 
         return render_template(
             "auth/request_account_activation.html", form=form