mirror of https://github.com/rwf2/Rocket.git
Return 404 on missing static file in todo example.
This commit is contained in:
parent
a2a0aab541
commit
cf47daa8e1
|
@ -1,8 +1,7 @@
|
||||||
use rocket::response::NamedFile;
|
|
||||||
use std::io;
|
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
|
use rocket::response::NamedFile;
|
||||||
|
|
||||||
#[get("/<path..>", rank = 5)]
|
#[get("/<path..>", rank = 5)]
|
||||||
fn all(path: PathBuf) -> io::Result<NamedFile> {
|
fn all(path: PathBuf) -> Option<NamedFile> {
|
||||||
NamedFile::open(Path::new("static/").join(path))
|
NamedFile::open(Path::new("static/").join(path)).ok()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue