diff --git a/filed/src/web/api/files/get_all.rs b/filed/src/web/api/files/get_all.rs index e4d5b08..8af8395 100644 --- a/filed/src/web/api/files/get_all.rs +++ b/filed/src/web/api/files/get_all.rs @@ -29,7 +29,7 @@ pub async fn get_all(state: SharedState) -> Result, Rejection> { } pub fn get_all_f(state: SharedState) -> impl Filter + Clone { - warp::path!("api" / "get_all") + warp::path!("api" / "files" / "get_all") .map(move || state.clone()) .and_then(get_all) } \ No newline at end of file