mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-05-21 02:53:56 +00:00
use static_files() for email attachments
Apply suggestions from code review Co-authored-by: Mathijs van Veluw <black.dex@gmail.com>
This commit is contained in:
parent
ea19c2250e
commit
4289663a16
4 changed files with 5 additions and 4 deletions
|
@ -89,7 +89,7 @@ fn alive(_conn: DbConn) -> Json<String> {
|
|||
}
|
||||
|
||||
#[get("/vw_static/<filename>")]
|
||||
fn static_files(filename: String) -> Result<(ContentType, &'static [u8]), Error> {
|
||||
pub fn static_files(filename: String) -> Result<(ContentType, &'static [u8]), Error> {
|
||||
match filename.as_ref() {
|
||||
"mail-github.png" => Ok((ContentType::PNG, include_bytes!("../static/images/mail-github.png"))),
|
||||
"logo-gray.png" => Ok((ContentType::PNG, include_bytes!("../static/images/logo-gray.png"))),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue