2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/server/routes/cln/payments.ts
Shahana Farooqui 1e6786a850 Enable/Disable with listConfigs
Enable/Disable with listConfigs
2022-05-16 15:40:16 -04:00

12 lines
341 B
TypeScript

import exprs from 'express';
const { Router } = exprs;
import { isAuthenticated } from '../../utils/authCheck.js';
import { listPayments, postPayment } from '../../controllers/cln/payments.js';
const router = Router();
router.get('/', isAuthenticated, listPayments);
router.post('/', isAuthenticated, postPayment);
export default router;