mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-05-23 08:32:45 -05:00
[GH-ISSUE #202] Support for admin panel #12892
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @plasmite on GitHub (Sep 29, 2018).
Original GitHub issue: https://github.com/dani-garcia/vaultwarden/issues/202
Use this every day! Thank you for your excellent work!
Are there any plans to support the admin panel for user management as described here? Or is there a way to enable it in the current implementation? The instructions on the linked page do not appear to apply and I do not see any env variables that would allow enabling this feature.
Thank you!
@dani-garcia commented on GitHub (Sep 29, 2018):
The admin panel source is not included with the web vault, and as far as I know it's not publicly available, so we'd have to recreate it from scratch.
At the same time, I don't think implementing this is worth it, to be honest. It would probably be easier to view or edit the sqlite database directly. And if someone needs to view or delete users and organizations very often, they could just create a bash script. Something like:
@plasmite commented on GitHub (Sep 29, 2018):
Thanks I figured this was the case--was poking around in the db already but didn't want to go mucking anything up if there was an alternative. Thanks again!