- Minor cleanup

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-01-22 17:21:46 -05:00
parent 7f587680ca
commit eabbc2211b
18 changed files with 262 additions and 257 deletions

View File

@@ -0,0 +1,11 @@
const express = require('express');
const router = express.Router();
const fb = require('../firebase/firebase-handler');
const intellipay = require('../intellipay/intellipay');
router.post('/lightbox_credentials', fb.validateFirebaseIdToken, intellipay.lightbox_credentials);
router.post('/payment_refund', fb.validateFirebaseIdToken, intellipay.payment_refund);
router.post('/generate_payment_url', fb.validateFirebaseIdToken, intellipay.generate_payment_url);
router.post('/postback', intellipay.postback);
module.exports = router;