staging #246

Merged
philipp merged 3 commits from staging into main 2024-03-05 09:46:55 +01:00
Showing only changes of commit 10a0e82392 - Show all commits

View File

@ -96,7 +96,7 @@ async fn show(db: &State<SqlitePool>, user: DonauLinzUser) -> Template {
)
}
#[get("/show?<year>")]
#[get("/show?<year>", rank = 2)]
async fn show_for_year(db: &State<SqlitePool>, user: AdminUser, year: i32) -> Template {
let logs = Logbook::completed_in_year(db, year).await;