Merge pull request 'allow scheckbuch people to be entered in logbook' (#477) from allow-scheckbuch-to-be-entered into main #478

Merged
philipp merged 2 commits from trim-new-user-names into staging 2024-05-04 18:35:50 +02:00
Showing only changes of commit 1d9adf071f - Show all commits

View File

@ -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