From 917f0f4ee1aad38a41c0340375a8159c62279a71 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 9 Dec 2025 07:17:01 -0800 Subject: [PATCH] fix(gateway): add /api/app/version route for mobile update check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mobile app was calling /api/app/version/check but this route was not configured in Kong gateway. Added admin-mobile-version route to forward these requests to admin-service. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/api-gateway/kong.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/api-gateway/kong.yml b/backend/api-gateway/kong.yml index 78967b9e..101ab32b 100644 --- a/backend/api-gateway/kong.yml +++ b/backend/api-gateway/kong.yml @@ -188,6 +188,10 @@ services: paths: - /api/v1/admin strip_path: false + - name: admin-mobile-version + paths: + - /api/app/version + strip_path: false # --------------------------------------------------------------------------- # Presence Service - 在线状态服务