mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-03 23:15:24 +00:00
14 lines
623 B
JavaScript
14 lines
623 B
JavaScript
const ChannelsController = require("../controllers/channels");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("./authCheck");
|
|
|
|
router.get("/", authCheck, ChannelsController.getChannels);
|
|
router.post("/", authCheck, ChannelsController.postChannel);
|
|
router.get("/:channelType", authCheck, ChannelsController.getChannels);
|
|
router.post("/transactions", authCheck, ChannelsController.postTransactions);
|
|
router.delete("/:channelPoint", authCheck, ChannelsController.closeChannel);
|
|
router.post("/chanPolicy", authCheck, ChannelsController.postChanPolicy);
|
|
|
|
module.exports = router;
|