Compare commits

..

No commits in common. "238629fde6c0deb7eb70d791e323255c0da6903e" and "8da5fe8e267575018ffa4af0f43cdae42c322472" have entirely different histories.

View file

@ -19,7 +19,6 @@ pub struct UserWithoutPassword {
id: Uuid, id: Uuid,
name: String, name: String,
email: String, email: String,
admin: bool,
} }
#[derive(Deserialize)] #[derive(Deserialize)]
@ -36,7 +35,6 @@ impl From<entity::user::Model> for UserWithoutPassword {
id: value.id, id: value.id,
name: value.name, name: value.name,
email: value.email, email: value.email,
admin: value.admin,
} }
} }
} }