1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-16 15:50:08 +00:00

Implement admin ability to enable/disable users

This commit is contained in:
janost 2020-11-30 23:12:56 +01:00
parent 9824d94a1c
commit 043aa27aa3
13 changed files with 63 additions and 0 deletions

View file

@ -116,6 +116,7 @@ table! {
table! {
users (uuid) {
uuid -> Text,
enabled -> Bool,
created_at -> Timestamp,
updated_at -> Timestamp,
verified_at -> Nullable<Timestamp>,