WIP: feat: add user details update

This commit is contained in:
Matthieu Bessat 2024-11-02 17:37:57 +01:00
parent 8285ca230c
commit d908586dfa
27 changed files with 871 additions and 38 deletions

View file

@ -19,7 +19,7 @@ struct User {
full_name: Option<String>,
email: Option<String>,
website: Option<String>,
picture: Option<String>, // embeded blob to store profile pic
picture: Option<Vec<u8>>, // embeded blob to store profile pic
password_hash: Option<String>, // argon2 password hash
status: UserStatus,
activation_token: Option<String>,