@@ -321,7 +321,7 @@ class ActivateAccount(MethodView):
return render_template("auth/account_activation.html", form=form)
-@impl
+@impl(tryfirst=True)
def flaskbb_load_blueprints(app):
auth = Blueprint("auth", __name__)
@@ -872,7 +872,7 @@ class UnhidePost(MethodView):
return redirect(post.topic.url)
forum = Blueprint("forum", __name__)
register_view(
@@ -1012,7 +1012,7 @@ class InstallPlugin(MethodView):
return redirect(url_for("management.plugins"))
management = Blueprint("management", __name__)
@@ -146,7 +146,7 @@ class UserProfile(MethodView):
return render_template("user/profile.html", user=user)
user = Blueprint("user", __name__)