fix: add /api/i18n to anonymous paths for unauthenticated access

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-10 10:27:01 -03:00
parent f07448d40a
commit a15d020556

View file

@ -232,6 +232,7 @@ async fn run_axum_server(
.add_anonymous_path("/healthz")
.add_anonymous_path("/api/health")
.add_anonymous_path("/api/product")
.add_anonymous_path("/api/i18n")
.add_anonymous_path("/ws")
.add_anonymous_path("/auth")
.add_public_path("/static")