mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-14 12:43:07 +02:00
15 lines
648 B
TypeScript
15 lines
648 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { getChannels, getChannelStats, openChannel, updateChannelRelayFee, closeChannel, circularRebalance } from '../../controllers/eclair/channels.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', isAuthenticated, getChannels);
|
|
router.get('/stats', isAuthenticated, getChannelStats);
|
|
router.post('/', isAuthenticated, openChannel);
|
|
router.post('/updateRelayFee', isAuthenticated, updateChannelRelayFee);
|
|
router.post('/circularRebalance', circularRebalance);
|
|
router.delete('/', isAuthenticated, closeChannel);
|
|
|
|
export default router;
|