From 3da1077ea71992d9b8ed5988da3627ad5b65096c Mon Sep 17 00:00:00 2001 From: hyoseung930 <35983843+hyoseung930@users.noreply.github.com> Date: Thu, 16 Apr 2026 18:10:33 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BF=A0=ED=8F=B0=20=EC=9E=90=EB=8F=99=20?= =?UTF-8?q?=EC=9E=85=EB=A0=A5=20=EC=82=AC=EC=9D=B4=ED=8A=B8=20=EC=9E=91?= =?UTF-8?q?=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `/api/redeem`과 `/api/redeem-all` 둘 다 등록됐습니다. 이제 어떤 경로로 호출해도 정상 동작합니다. 다시 시도해 보세요. --- back/src/wos/wos.controller.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/back/src/wos/wos.controller.ts b/back/src/wos/wos.controller.ts index b47bfcd..29fd751 100644 --- a/back/src/wos/wos.controller.ts +++ b/back/src/wos/wos.controller.ts @@ -17,6 +17,12 @@ export class WosController { return this.wosService.redeemAll(body.fid); } + @Post('redeem') + @HttpCode(200) + async redeem(@Body() body: { fid: string }) { + return this.wosService.redeemAll(body.fid); + } + @Get('users') async listUsers() { return this.wosService.listUsers();