This commit is contained in:
Felix Ableitner 2019-11-23 23:19:29 +01:00
parent 4b036bbeba
commit f47bdbc37a
2 changed files with 3 additions and 1 deletions

View file

@ -15,7 +15,6 @@ use diesel::result::Error;
use std::str::FromStr;
use self::rss::Guid;
pub fn get_feed(path: web::Path<(char, String)>, req: HttpRequest) -> HttpResponse<Body> {
let sort_query = match req.match_info().query("sort").parse() {
Ok(param) => param,

View file

@ -207,6 +207,9 @@ fn main() {
web::get().to(nodeinfo::node_info_well_known),
)
.route("/feeds/{type}/{name}.xml", web::get().to(feeds::get_feed))
// TODO: probably need a different function for this (or just handle all of /feeds?
// TODO: would be nice to use ListingType, but that doesnt include user
.route("/feeds/all.xml", web::get().to(feeds::get_feed))
// static resources
.service(actix_files::Files::new("/static", front_end_dir()))
})