1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
use axum::{
extract::{Form, State},
response::{IntoResponse, Redirect},
routing::post,
Router,
};
use crate::{app::App, error::InternalError, login::repo::logins::Login};
pub fn router() -> Router<App> {
Router::new().route("/create", post(on_create))
}
#[derive(serde::Deserialize)]
struct CreateRequest {
name: String,
}
async fn on_create(
State(app): State<App>,
_: Login, // requires auth, but doesn't actually care who you are
Form(form): Form<CreateRequest>,
) -> Result<impl IntoResponse, InternalError> {
app.channels().create(&form.name).await?;
Ok(Redirect::to("/"))
}
|