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:
parent
c907f44851
commit
48f4ed60a6
|
|
@ -154,7 +154,7 @@ export class IdentityServiceClient {
|
||||||
async () => {
|
async () => {
|
||||||
const response = await firstValueFrom(
|
const response = await firstValueFrom(
|
||||||
this.httpService.get<UserDetailInfo>(
|
this.httpService.get<UserDetailInfo>(
|
||||||
`${this.baseUrl}/internal/users/${accountSequence}/detail`,
|
`${this.baseUrl}/api/v1/internal/users/${accountSequence}/detail`,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
return response.data;
|
return response.data;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue