fix(api-gateway): 添加 /api/v1/user 路由到 Kong 配置
问题: 移动端调用 /api/v1/user/auto-create 返回 404 原因: Kong 配置只有 /api/v1/users (复数), 缺少 /api/v1/user (单数) 解决: 添加 identity-user 路由匹配 /api/v1/user 路径 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
f3d9b13dac
commit
d71c104c86
|
|
@ -32,6 +32,10 @@ services:
|
||||||
paths:
|
paths:
|
||||||
- /api/v1/auth
|
- /api/v1/auth
|
||||||
strip_path: false
|
strip_path: false
|
||||||
|
- name: identity-user
|
||||||
|
paths:
|
||||||
|
- /api/v1/user
|
||||||
|
strip_path: false
|
||||||
- name: identity-users
|
- name: identity-users
|
||||||
paths:
|
paths:
|
||||||
- /api/v1/users
|
- /api/v1/users
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue