This adds a very simple user management page to /admin/user-management that lets an admin delete users. This was mostly to help me clean up all the test users I was creating. It doesn't completely delete them, due to some firebase limitations, but deletes the extra data we store anytime a user registers.
This left to do:
Add a link to this page somewhere.
Only allow admins to browse to it. (If non-admins browse to it, they can see the page and can click on the delete links, but nothing happens.)
This adds a very simple user management page to
/admin/user-management
that lets an admin delete users. This was mostly to help me clean up all the test users I was creating. It doesn't completely delete them, due to some firebase limitations, but deletes the extra data we store anytime a user registers.This left to do: