We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf5f7af commit 7e596eeCopy full SHA for 7e596ee
src/routers/payment/serverAuth/index.ts
@@ -21,13 +21,13 @@ export default async (req: ServerAuthRequest, res: Response) => {
21
throw new HttpError(500, '잘못된 요청입니다.','ERR_INVALID_REQUEST')
22
}
23
24
- const transaction = await createTransaction({
+ await createTransaction({
25
tid: response.tid,
26
orderId: response.orderId,
27
amount: response.amount,
28
goodsName: response.goodsName,
29
userId: userIdentity.id,
30
})
31
32
- res.json(transaction)
+ res.redirect('https://demo.dimipay.io/user/profile')
33
0 commit comments