mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-15 18:13:00 +00:00
f817ae39bc
Dahboard layout fix #576 Boltz integration (#590) Merged verify token and password authentication Channel mobile view update ECL Adding inactive channels force close Flag Dust UTXOs Bug fix for forwarding history browser crash #596 Label and Lease UTXOs UI Table Fixes App settings (#604) Settings updates UTXO lease confirmation box Login and Settings page without add new node
15 lines
670 B
JavaScript
15 lines
670 B
JavaScript
const ChannelsController = require("../../controllers/c-lightning/channels");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("../shared/authCheck");
|
|
|
|
router.get("/listChannels", authCheck, ChannelsController.listChannels);
|
|
router.post("/", authCheck, ChannelsController.openChannel);
|
|
router.post("/setChannelFee", authCheck, ChannelsController.setChannelFee);
|
|
router.delete("/:channelId", authCheck, ChannelsController.closeChannel);
|
|
|
|
router.get("/localremotebalance", authCheck, ChannelsController.getLocalRemoteBalance);
|
|
router.get("/listForwards", authCheck, ChannelsController.listForwards);
|
|
|
|
module.exports = router;
|