diff options
author | BlackDex <[email protected]> | 2020-05-28 10:42:36 +0200 |
---|---|---|
committer | BlackDex <[email protected]> | 2020-05-28 10:46:25 +0200 |
commit | 3c66deb5cc7a4387e4176d2a5bdd3f321f09a6bd (patch) | |
tree | 252120240069f5fbe2e790d482a4eaede6b86843 /src/api/web.rs | |
parent | 4146612a32b11d7a174b8ae997ed5eb317684de2 (diff) | |
download | vaultwarden-3c66deb5cc7a4387e4176d2a5bdd3f321f09a6bd.tar.gz vaultwarden-3c66deb5cc7a4387e4176d2a5bdd3f321f09a6bd.zip |
Redesign of the admin interface.
Main changes:
- Splitted up settings and users into two separate pages.
- Added verified shield when the e-mail address has been verified.
- Added the amount of personal items in the database to the users overview.
- Added Organizations and Diagnostics pages.
- Shows if DNS resolving works.
- Shows if there is a posible time drift.
- Shows current versions of server and web-vault.
- Optimized logo-gray.png using optipng
Items which can be added later:
- Amount of cipher items accessible for a user, not only his personal items.
- Amount of users per Org
- Version update check in the diagnostics overview.
- Copy/Pasteable runtime config which has sensitive data changed or removed for support questions either on the forum or github issues.
- Option to delete Orgs and all its passwords (when there are no members anymore).
- Etc....
Diffstat (limited to 'src/api/web.rs')
-rw-r--r-- | src/api/web.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/web.rs b/src/api/web.rs index 7f47ae7c..a97a1c96 100644 --- a/src/api/web.rs +++ b/src/api/web.rs @@ -78,6 +78,7 @@ fn static_files(filename: String) -> Result<Content<&'static [u8]>, Error> { match filename.as_ref() { "mail-github.png" => Ok(Content(ContentType::PNG, include_bytes!("../static/images/mail-github.png"))), "logo-gray.png" => Ok(Content(ContentType::PNG, include_bytes!("../static/images/logo-gray.png"))), + "shield-white.png" => Ok(Content(ContentType::PNG, include_bytes!("../static/images/shield-white.png"))), "error-x.svg" => Ok(Content(ContentType::SVG, include_bytes!("../static/images/error-x.svg"))), "hibp.png" => Ok(Content(ContentType::PNG, include_bytes!("../static/images/hibp.png"))), |