CORS bug fix

This commit is contained in:
2026-06-30 11:48:38 -04:00
parent f06eaee30f
commit 7019a2fd94
+1
View File
@@ -33,6 +33,7 @@ pub mod init {
let cors = tower_http::cors::CorsLayer::new() let cors = tower_http::cors::CorsLayer::new()
.allow_methods([ .allow_methods([
axum::http::Method::GET, axum::http::Method::GET,
axum::http::Method::PATCH,
axum::http::Method::POST, axum::http::Method::POST,
axum::http::Method::PUT, axum::http::Method::PUT,
axum::http::Method::DELETE, axum::http::Method::DELETE,