From aff24b4ce5be0172e34e02e06e7b5fa43026c4bf Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 22 Aug 2022 17:33:47 +0200 Subject: Hide password on users list --- server/src/models/user.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'server/src/models/user.rs') diff --git a/server/src/models/user.rs b/server/src/models/user.rs index 72fd56a..08514a8 100644 --- a/server/src/models/user.rs +++ b/server/src/models/user.rs @@ -10,6 +10,12 @@ pub struct User { password: String, } +#[derive(Deserialize, Serialize)] +pub struct UserList { + id: i32, + email: String, +} + impl User { pub async fn create(user: User) -> Result { let pool = unsafe { get_client() }; @@ -28,9 +34,9 @@ impl User { Ok(rec.id) } - pub async fn list() -> Result, AppError> { + pub async fn list() -> Result, AppError> { let pool = unsafe { get_client() }; - let rows = sqlx::query_as!(User, r#"SELECT id, email, password FROM users"#) + let rows = sqlx::query_as!(UserList, r#"SELECT id, email FROM users"#) .fetch_all(pool) .await?; -- cgit v1.2.3-18-g5258