admin: added list of users

This commit is contained in:
Philippe Loctaux 2023-04-16 22:00:29 +02:00
parent e3bda01eca
commit 5153d057b0
13 changed files with 313 additions and 3 deletions

View file

@ -0,0 +1,15 @@
select id,
created_at as "created_at: DateTime<Utc>",
updated_at as "updated_at: DateTime<Utc>",
is_admin as "is_admin: bool",
username,
name,
email,
password,
password_recover,
paper_key,
is_archived as "is_archived: bool",
timezone
from users
order by created_at desc