Skip to content

Commit

Permalink
✨ feat: 주식 소유 확인 엔드포인트를 쿼리로 받도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
xjfcnfw3 committed Nov 20, 2024
1 parent 0dd1b70 commit 5e7e4b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/stock/stock.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class StockController {
})
@Get('user/ownership')
async checkOwnership(
@Body() body: UserStockRequest,
@Query() body: UserStockRequest,
@Req() request: Request,
) {
const user = request.user as User;
Expand Down

0 comments on commit 5e7e4b0

Please sign in to comment.