mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
15 lines
863 B
JavaScript
15 lines
863 B
JavaScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { listChannels, openChannel, setChannelFee, closeChannel, getLocalRemoteBalance, listForwards, funderUpdatePolicy, listForwardsPaginated } from '../../controllers/cln/channels.js';
|
|
const router = Router();
|
|
router.get('/listChannels', isAuthenticated, listChannels);
|
|
router.post('/', isAuthenticated, openChannel);
|
|
router.post('/setChannelFee', isAuthenticated, setChannelFee);
|
|
router.delete('/:channelId', isAuthenticated, closeChannel);
|
|
router.get('/localRemoteBalance', isAuthenticated, getLocalRemoteBalance);
|
|
router.get('/listForwards', isAuthenticated, listForwards);
|
|
router.get('/listForwardsPaginated', isAuthenticated, listForwardsPaginated);
|
|
router.post('/funderUpdate', isAuthenticated, funderUpdatePolicy);
|
|
export default router;
|