File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 74
74
echo MOMO_SECRET_KEY=${{ secrets.MOMO_SECRET_KEY }} >> .env
75
75
echo MOMO_ENDPOINT=${{ vars.MOMO_ENDPOINT }} >> .env
76
76
77
+ echo PAYOS_CLIENT_ID=${{ secrets.PAYOS_CLIENT_ID }} >> .env
78
+ echo PAYOS_API_KEY=${{ secrets.PAYOS_API_KEY }} >> .env
79
+ echo PAYOS_CHECKSUM_KEY=${{ secrets.PAYOS_CHECKSUM_KEY }} >> .env
80
+
77
81
echo ZALOPAY_APP_ID=${{ secrets.ZALOPAY_APP_ID }} >> .env
78
82
echo ZALOPAY_KEY1=${{ secrets.ZALOPAY_KEY1 }} >> .env
79
83
echo ZALOPAY_KEY2=${{ secrets.ZALOPAY_KEY2 }} >> .env
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ export class PaymentController {
55
55
console . log ( 'Handling PAYOS webhook' , JSON . stringify ( webhookData ) )
56
56
this . paymentService . setStrategy ( PaymentMethod . PAY_OS )
57
57
58
- // just skip for confirmWebhook
59
- if ( webhookData . data . orderCode == 123 ) return true
58
+ // // just skip for confirmWebhook
59
+ // if (webhookData.data.orderCode == 123) return true
60
60
61
61
//1. Validate signature with other data
62
62
const result = this . paymentService . verifyPaymentWebhookData ( webhookData )
You can’t perform that action at this time.
0 commit comments