From f527f43b9e44a6f75475aaebc6e12024573ddb5d Mon Sep 17 00:00:00 2001 From: SvyatoslavArtymovych Date: Fri, 28 Apr 2023 14:17:54 +0300 Subject: [PATCH] hotfix: access to home pages --- app/views/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/views/main.py b/app/views/main.py index 21f868a..d6fc36d 100644 --- a/app/views/main.py +++ b/app/views/main.py @@ -1,11 +1,8 @@ from flask import render_template, Blueprint -from flask_login import login_required - main_blueprint = Blueprint("main", __name__) @main_blueprint.route("/") -@login_required def index(): return render_template("index.html")