Fix asset fallthrough on api paths

This commit is contained in:
Ethan O'Brien
2026-06-07 22:11:02 -05:00
parent d34b5fc6a4
commit b584fbe97f
3 changed files with 24 additions and 17 deletions

View File

@@ -209,6 +209,7 @@ pub async fn request(req: HttpRequest, body: String) -> HttpResponse {
}
pub fn configure(cfg: &mut actix_web::web::ServiceConfig) {
cfg.configure(crate::static_handlers::routes);
cfg.service(
actix_web::web::scope("/api")
.configure(asset_lists::routes)