Remove references to "bwrs"

The only remaining one is getting the version of the web vault, which requires coordinating with the web vault patching.
This commit is contained in:
Jake Howard
2021-12-31 11:41:34 +00:00
parent 920371929b
commit 8e2f708e50
10 changed files with 30 additions and 29 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ fn alive(_conn: DbConn) -> Json<String> {
Json(format_date(&Utc::now().naive_utc()))
}
#[get("/bwrs_static/<filename>")]
#[get("/vw_static/<filename>")]
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"))),