From bb048bb104769666bce8d1c162c1a87607552c2f Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 9 Dec 2025 20:16:24 -0800 Subject: [PATCH] feat(gateway): add wallet service routes for profile page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add /api/v1/wallet route to Kong gateway to support: - GET /wallet/my-wallet - POST /wallet/claim-rewards - POST /wallet/settle - POST /wallet/withdraw - GET /wallet/withdrawals - GET /wallet/ledger/my-ledger 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/api-gateway/kong.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/backend/api-gateway/kong.yml b/backend/api-gateway/kong.yml index 14235564..b4382931 100644 --- a/backend/api-gateway/kong.yml +++ b/backend/api-gateway/kong.yml @@ -59,9 +59,13 @@ services: paths: - /api/v1/wallets strip_path: false + - name: wallet-main + paths: + - /api/v1/wallet + strip_path: false - name: wallet-health paths: - - /api/v1/wallet/health + - /api/v1/wallet-service/health strip_path: true # ---------------------------------------------------------------------------