feature/IO-2885-IntelliPay-App-Postback

- Finish ticket
This commit is contained in:
Dave Richer
2025-04-01 15:15:48 -04:00
parent 09c1a8ae35
commit c78b9866a3
5 changed files with 108 additions and 24 deletions

View File

@@ -6,8 +6,7 @@ const {
paymentRefund,
generatePaymentUrl,
postBack,
checkFee,
postBackCallBack
checkFee
} = require("../intellipay/intellipay");
router.post("/lightbox_credentials", validateFirebaseIdTokenMiddleware, lightboxCredentials);
@@ -15,6 +14,5 @@ router.post("/payment_refund", validateFirebaseIdTokenMiddleware, paymentRefund)
router.post("/generate_payment_url", validateFirebaseIdTokenMiddleware, generatePaymentUrl);
router.post("/checkfee", validateFirebaseIdTokenMiddleware, checkFee);
router.post("/postback", postBack);
router.post("/postback-callback", postBackCallBack);
module.exports = router;