feat(gateway): add Kong route for app version check endpoint

Add /api/app/version route to Kong declarative config so that the
Flutter app's GET /api/app/version/check?platform=&current_version_code=
request can reach version-service through the API gateway.

Previously only /api/v1/versions was routed; the public check endpoint
served by AppVersionCheckController was unreachable (Kong returned
"no Route matched with those values").

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-03-06 05:33:56 -08:00
parent 141c6e984d
commit 369ecb2f29
1 changed files with 4 additions and 0 deletions

View File

@ -120,6 +120,10 @@ services:
paths:
- /api/v1/versions
strip_path: false
- name: app-version-check-route
paths:
- /api/app/version
strip_path: false
- name: billing-service
url: http://billing-service:3010