diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-10-22 19:12:34 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-22 19:12:34 -0400 |
| commit | 6430854352745f45281021c305b4e350bc92d535 (patch) | |
| tree | c6901c22a45e36415f63efe988d4d4f2a309df81 /src/invite/routes | |
| parent | 98af8ff80da919a1126ba7c6afa65e6654b5ecde (diff) | |
| parent | db940bacd096a33a65f29759e70ea1acf6186a67 (diff) | |
Merge branch 'unicode-normalization'
Diffstat (limited to 'src/invite/routes')
| -rw-r--r-- | src/invite/routes/invite/post.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/invite/routes/invite/post.rs b/src/invite/routes/invite/post.rs index c072929..a41207a 100644 --- a/src/invite/routes/invite/post.rs +++ b/src/invite/routes/invite/post.rs @@ -10,6 +10,7 @@ use crate::{ error::{Internal, NotFound}, invite::app, login::{Login, Password}, + name::Name, token::extract::IdentityToken, }; @@ -31,7 +32,7 @@ pub async fn handler( #[derive(serde::Deserialize)] pub struct Request { - pub name: String, + pub name: Name, pub password: Password, } |
