trim name of new user name
This commit is contained in:
parent
fcb4d65d32
commit
1d9adf071f
@ -450,6 +450,7 @@ ORDER BY last_access DESC
|
||||
}
|
||||
|
||||
pub async fn create(db: &SqlitePool, name: &str) -> bool {
|
||||
let name = name.trim();
|
||||
sqlx::query!("INSERT INTO USER(name) VALUES (?)", name)
|
||||
.execute(db)
|
||||
.await
|
||||
|
Loading…
Reference in New Issue
Block a user