Redirect / to /receipts

bugfix/ci-buildah
Dustin 2025-03-09 21:09:08 -05:00
parent 7ab2af94ef
commit 20185bdf1f
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ impl TryFrom<TransactionRead> for Transaction {
#[rocket::get("/")] #[rocket::get("/")]
async fn index() -> Redirect { async fn index() -> Redirect {
Redirect::to(rocket::uri!(transaction_list())) Redirect::to("/receipts")
} }
#[rocket::get("/transactions")] #[rocket::get("/transactions")]