fix(planting-service): 修复 identity-service API 调用路径

添加 /api/v1 前缀以匹配 identity-service 的全局路由配置

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-25 08:39:45 -08:00
parent c907f44851
commit 48f4ed60a6
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ export class IdentityServiceClient {
async () => {
const response = await firstValueFrom(
this.httpService.get<UserDetailInfo>(
`${this.baseUrl}/internal/users/${accountSequence}/detail`,
`${this.baseUrl}/api/v1/internal/users/${accountSequence}/detail`,
),
);
return response.data;