Add redirect /ui/buckets URL to /ui/

This commit is contained in:
2026-01-04 14:34:59 +08:00
parent 94a55cf2b7
commit 609e9db2f7
2 changed files with 6 additions and 18 deletions

View File

@@ -276,6 +276,9 @@ def buckets_overview():
})
return render_template("buckets.html", buckets=visible_buckets, principal=principal)
@ui_bp.get("/buckets")
def buckets_redirect():
return redirect(url_for("ui.buckets_overview"))
@ui_bp.post("/buckets")
def create_bucket():