Skip to content

Commit

Permalink
Adding "UserEnabled" and "CreatedAt" member to the json output of a U…
Browse files Browse the repository at this point in the history
…ser in the admin/users and admin/users/<ID> web routes.
  • Loading branch information
Lowaiz committed Jun 2, 2022
1 parent 3713f2d commit 97f0955
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/api/admin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,10 +307,14 @@ fn logout(cookies: &CookieJar<'_>, referer: Referer) -> Redirect {

#[get("/users")]
async fn get_users_json(_token: AdminToken, conn: DbConn) -> Json<Value> {
const DT_FMT: &str = "%Y-%m-%d %H:%M:%S %Z";
let users_json = stream::iter(User::get_all(&conn).await)
.then(|u| async {
let u = u; // Move out this single variable
u.to_json(&conn).await
let mut usr = u.to_json(&conn).await;
usr["UserEnabled"] = json!(u.enabled);
usr["CreatedAt"] = json!(format_naive_datetime_local(&u.created_at, DT_FMT));
usr
})
.collect::<Vec<Value>>()
.await;
Expand Down

0 comments on commit 97f0955

Please sign in to comment.