This commit is contained in:
müde 2026-05-15 02:58:35 +02:00
parent b711296460
commit 0fc287c768
2 changed files with 2 additions and 6 deletions

View file

@ -125,10 +125,7 @@ async fn post_deny(State(state): State<AppState>, AxumPath(id): AxumPath<i64>) -
}
}
async fn post_destroy(
State(state): State<AppState>,
AxumPath(name): AxumPath<String>,
) -> Response {
async fn post_destroy(State(state): State<AppState>, AxumPath(name): AxumPath<String>) -> Response {
match actions::destroy(&state.coord, &name).await {
Ok(()) => Redirect::to("/").into_response(),
Err(e) => error_response(&format!("destroy {name} failed: {e:#}")),