c/lemmy_support · by knova@links.dartboard.social · 3yUser list? Is there a way, as an admin, to see a list of users on my instance? 2 points · 4 comments · view on lemmy.world
4 Comments
Lodion@lemmy.click · 4 pts · 3y
In the UI? Not that I know of. From the database... sure:
docker exec -it <instancename>_postgres_1 shpsql -U lemmy -h 127.0.0.1 -p 5432 -d lemmySELECT * from local_user;knova@links.dartboard.social · 1 pts · 3y
This is fine, thanks!
ptz@lemmy.ptznetwork.org · 2 pts · 3y
To expand on that, I do a join between the
local_userandpersontables so I can grab the name and display names for the local users: