From 1c4def286745d8177918e87c4fc9b887ac3ca58f Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 4 Jan 2026 22:27:55 -0800 Subject: [PATCH] feat(kong): add system-account-reports route to reporting-service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Kong route for the new system account reports API endpoint at /api/v1/system-account-reports, forwarding to reporting-service. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/api-gateway/kong.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/api-gateway/kong.yml b/backend/api-gateway/kong.yml index 45a14208..49c4b946 100644 --- a/backend/api-gateway/kong.yml +++ b/backend/api-gateway/kong.yml @@ -177,6 +177,11 @@ services: paths: - /api/v1/export strip_path: false + # [2026-01-04] 新增:系统账户报表路由 + - name: reporting-system-accounts + paths: + - /api/v1/system-account-reports + strip_path: false # --------------------------------------------------------------------------- # Authorization Service - 授权服务