fix: Remove strict slashes from index routes
All checks were successful
Build Docker / BuildImage (push) Successful in 48s

This commit is contained in:
2025-10-30 19:50:03 +11:00
parent 872373dffd
commit 7b2b3659bb
8 changed files with 15 additions and 16 deletions

View File

@@ -4,6 +4,6 @@ from tools import json_response
app = Blueprint('template', __name__)
@app.route("/")
@app.route("/", strict_slashes=False)
def index():
return json_response(request, "Success", 200)