diff --git a/apps/gateway/src/main.rs b/apps/gateway/src/main.rs index 1c66dde..c8ac0d3 100644 --- a/apps/gateway/src/main.rs +++ b/apps/gateway/src/main.rs @@ -202,6 +202,10 @@ impl Services { else if path.starts_with("/api/admin/runtime-configs") { Some(self.users_url.clone()) } + // User-facing runtime config (role + permissions bundle) + else if path.starts_with("/api/runtime-config") { + Some(self.users_url.clone()) + } // Catch-all for any other admin endpoints → users service else if path.starts_with("/api/admin/") { Some(self.users_url.clone())