fmt
This commit is contained in:
parent
a59fe081f4
commit
b20055293e
2 changed files with 3 additions and 6 deletions
|
|
@ -81,10 +81,7 @@ async fn messages_stream(
|
|||
Sse::new(stream).keep_alive(KeepAlive::default())
|
||||
}
|
||||
|
||||
async fn post_approve(
|
||||
State(state): State<AppState>,
|
||||
AxumPath(id): AxumPath<i64>,
|
||||
) -> Response {
|
||||
async fn post_approve(State(state): State<AppState>, AxumPath(id): AxumPath<i64>) -> Response {
|
||||
match actions::approve(&state.coord, id).await {
|
||||
Ok(()) => Redirect::to("/").into_response(),
|
||||
Err(e) => error_response(&format!("approve {id} failed: {e:#}")),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue