2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/routes/channels.js
ShahanaFarooqui d87f75d3ef Peer and Channel Enhancements
Connect Peer: Remove host, add with pubkey only.
Peers List: Add Alias.
Channel select: Replace peer pubkey in select with Alias.
Channel Close.
2018-11-04 18:47:00 -05:00

12 lines
452 B
JavaScript

const ChannelsController = require("../controllers/channels");
const express = require("express");
const router = express.Router();
router.get("/", ChannelsController.getChannels);
router.get("/:channelType", ChannelsController.getChannels);
router.post("/", ChannelsController.postChannel);
router.post("/transactions", ChannelsController.postTransactions);
router.delete("/:channelPoint", ChannelsController.closeChannel);
module.exports = router;