mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
44412d357e
LND Palemoon UX extension panel bug Cookie file not generated for BTCPayServer #990 ECL Missing fee calculation on Dashboard #975 CLT channel filter on alias bug fix #982 CLightning to Code Lightning #997 Added Infographics for Channel Rebalance CLN Base fee zero bug fix #987 ECL Query Route bug fix #1007 LND faster initial load LND Transactions Lookup #1002 LND Bug fix for Routing Fee Calculation
15 lines
617 B
TypeScript
15 lines
617 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup } from '../../controllers/lnd/payments.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', isAuthenticated, getPayments);
|
|
router.get('/alltransactions', isAuthenticated, getAllLightningTransactions);
|
|
router.get('/decode/:payRequest', isAuthenticated, decodePayment);
|
|
router.get('/lookup/:paymentHash', isAuthenticated, paymentLookup);
|
|
router.post('/', isAuthenticated, decodePayments);
|
|
|
|
export default router;
|