Display the list of users
This commit is contained in:
@ -8,7 +8,7 @@ pub type UserID = String;
|
||||
pub struct User {
|
||||
pub uid: UserID,
|
||||
pub first_name: String,
|
||||
pub last_last: String,
|
||||
pub last_name: String,
|
||||
pub username: String,
|
||||
pub email: String,
|
||||
pub password: String,
|
||||
@ -40,7 +40,7 @@ impl Default for User {
|
||||
Self {
|
||||
uid: uuid::Uuid::new_v4().to_string(),
|
||||
first_name: "".to_string(),
|
||||
last_last: "".to_string(),
|
||||
last_name: "".to_string(),
|
||||
username: "".to_string(),
|
||||
email: "".to_string(),
|
||||
password: "".to_string(),
|
||||
|
Reference in New Issue
Block a user