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=¤t_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:
parent
141c6e984d
commit
369ecb2f29
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue