From a15d0205563066e2f911cf86251e4fe2ddf930d6 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sat, 10 Jan 2026 10:27:01 -0300 Subject: [PATCH] fix: add /api/i18n to anonymous paths for unauthenticated access --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 8fc2dd37d..9644d0551 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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")