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

@@ -179,7 +179,6 @@ def serviceWorker():
# region Misc routes
@app.route("/meet")
@app.route("/meeting")
@app.route("/appointment")
@@ -203,13 +202,6 @@ def api_legacy(function):
return redirect(f"/api/v1/{function}", code=301)
return error_response(request, message="404 Not Found", code=404)
@app.route("/actions.json")
def sol_actions():
return jsonify(
{"rules": [{"pathPattern": "/donate**", "apiPath": "/api/v1/donate**"}]}
)
# endregion
# region Main routes