mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-24 06:47:57 +01:00
13 lines
542 B
TypeScript
13 lines
542 B
TypeScript
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;
|