diff options
author | Santo Cariotti <santo@dcariotti.me> | 2022-08-22 17:33:47 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2022-08-22 17:33:47 +0200 |
commit | aff24b4ce5be0172e34e02e06e7b5fa43026c4bf (patch) | |
tree | de0067a34aa9c6d8ed30ced28a436ed989dc2e9b /server/src/routes | |
parent | 9487da48222c846533ecac4bc115d40dab35b9cc (diff) |
Hide password on users list
Diffstat (limited to 'server/src/routes')
-rw-r--r-- | server/src/routes/user.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/routes/user.rs b/server/src/routes/user.rs index f155f27..1b43e01 100644 --- a/server/src/routes/user.rs +++ b/server/src/routes/user.rs @@ -1,12 +1,12 @@ use crate::errors::AppError; -use crate::models::user::User; +use crate::models::user::{User, UserList}; use axum::{routing::get, Json, Router}; pub fn create_route() -> Router { Router::new().route("/", get(list_users)) } -async fn list_users() -> Result<Json<Vec<User>>, AppError> { +async fn list_users() -> Result<Json<Vec<UserList>>, AppError> { let users = User::list().await?; Ok(Json(users)) |