mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-11 13:32:38 +01:00
Error when admin panel is disabled
This commit is contained in:
parent
330e90a6ac
commit
f3b1a5ff3e
@ -16,7 +16,7 @@ use crate::CONFIG;
|
||||
|
||||
pub fn routes() -> Vec<Route> {
|
||||
if CONFIG.admin_token().is_none() {
|
||||
return Vec::new();
|
||||
return routes![admin_disabled];
|
||||
}
|
||||
|
||||
routes![
|
||||
@ -31,6 +31,11 @@ pub fn routes() -> Vec<Route> {
|
||||
]
|
||||
}
|
||||
|
||||
#[get("/")]
|
||||
fn admin_disabled() -> &'static str {
|
||||
"The admin panel is disabled, please configure the 'ADMIN_TOKEN' variable to enable it"
|
||||
}
|
||||
|
||||
const COOKIE_NAME: &str = "BWRS_ADMIN";
|
||||
const ADMIN_PATH: &str = "/admin";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user