2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-15 18:13:00 +00:00
RTL/server/routes/cln/channels.ts

18 lines
676 B
TypeScript
Raw Normal View History

2021-12-29 23:08:41 +00:00
import exprs from 'express';
const { Router } = exprs;
import { isAuthenticated } from '../../utils/authCheck.js';
import { listPeerChannels, openChannel, setChannelFee, closeChannel, listForwards, funderUpdatePolicy } from '../../controllers/cln/channels.js';
2021-12-29 23:08:41 +00:00
const router = Router();
router.get('/listPeerChannels', isAuthenticated, listPeerChannels);
2021-12-29 23:08:41 +00:00
router.post('/', isAuthenticated, openChannel);
router.post('/setChannelFee', isAuthenticated, setChannelFee);
router.post('/close/', isAuthenticated, closeChannel);
2021-12-29 23:08:41 +00:00
router.post('/listForwards', isAuthenticated, listForwards);
2021-12-29 23:08:41 +00:00
router.post('/funderUpdate', isAuthenticated, funderUpdatePolicy);
2021-12-29 23:08:41 +00:00
export default router;