mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 22:46:59 +01:00
14 lines
575 B
TypeScript
14 lines
575 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { getChannels, getChannelStats, openChannel, updateChannelRelayFee, closeChannel } 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.delete('/', isAuthenticated, closeChannel);
|
|
|
|
export default router;
|