fix(wallet-service): fix system-withdrawal API route prefix to match Kong gateway

Changed controller route from 'system-withdrawal' to 'wallets/system-withdrawal'
to align with Kong's /api/v1/wallets/* routing

🤖 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 2026-01-06 10:53:54 -08:00
parent 305514b246
commit 2c8263754f
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class SystemWithdrawalRequestDTO {
*
*/
@ApiTags('System Withdrawal (Internal)')
@Controller('system-withdrawal')
@Controller('wallets/system-withdrawal')
export class SystemWithdrawalController {
private readonly logger = new Logger(SystemWithdrawalController.name);