[#19] Small changes

master
Jef Roosens 2021-04-12 23:03:15 +02:00
parent 552cf4bf7b
commit 3b5f1e9cf7
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
FROM chewingbever/fej-builder:latest
ENV RUST_BACKTRACE=1
ENV RUST_BACKTRACE 1
ENV ROCKET_LOG debug
ENTRYPOINT ["cargo"]
CMD ["run"]

View File

@ -15,9 +15,9 @@ pub fn routes() -> Vec<rocket::Route> {
/// # Arguments
///
/// * `search_term` - Search term to use to look for streets
#[get("/search?<search_term>")]
pub fn route_search_streets(search_term: String) -> Result<Json<Vec<Street>>, Status> {
Ok(Json(search_streets(search_term.as_str())?))
#[get("/search?<q>")]
pub fn route_search_streets(q: String) -> Result<Json<Vec<Street>>, Status> {
Ok(Json(search_streets(q.as_str())?))
}
/// Handles returning of pickup times for a specific address. It returns a list