mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-03 23:15:24 +00:00
11 lines
539 B
JavaScript
11 lines
539 B
JavaScript
|
import exprs from 'express';
|
||
|
const { Router } = exprs;
|
||
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
||
|
import { queryPaymentRoute, decodePayment, getSentPaymentsInformation, postPayment } from '../../controllers/eclair/payments.js';
|
||
|
const router = Router();
|
||
|
router.get('/route/', isAuthenticated, queryPaymentRoute);
|
||
|
router.get('/decode/:invoice', isAuthenticated, decodePayment);
|
||
|
router.post('/getsentinfos', isAuthenticated, getSentPaymentsInformation);
|
||
|
router.post('/', isAuthenticated, postPayment);
|
||
|
export default router;
|