2021-12-29 23:08:41 +00:00
|
|
|
import exprs from 'express';
|
|
|
|
const { Router } = exprs;
|
|
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
2022-05-01 17:35:20 +00:00
|
|
|
import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup } from '../../controllers/lnd/payments.js';
|
2021-12-29 23:08:41 +00:00
|
|
|
|
|
|
|
const router = Router();
|
|
|
|
|
|
|
|
router.get('/', isAuthenticated, getPayments);
|
|
|
|
router.get('/alltransactions', isAuthenticated, getAllLightningTransactions);
|
|
|
|
router.get('/decode/:payRequest', isAuthenticated, decodePayment);
|
2022-05-01 17:35:20 +00:00
|
|
|
router.get('/lookup/:paymentHash', isAuthenticated, paymentLookup);
|
2021-12-29 23:08:41 +00:00
|
|
|
router.post('/', isAuthenticated, decodePayments);
|
|
|
|
|
|
|
|
export default router;
|