mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
5107c300eb
2FA Fix
15 lines
622 B
TypeScript
15 lines
622 B
TypeScript
import * as 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;
|