2018-11-04 23:47:00 +00:00
|
|
|
const graphController = require("../controllers/graph");
|
|
|
|
const express = require("express");
|
|
|
|
const router = express.Router();
|
2019-01-01 16:26:51 +00:00
|
|
|
const authCheck = require("./authCheck");
|
2018-11-04 23:47:00 +00:00
|
|
|
|
2019-01-01 16:26:51 +00:00
|
|
|
router.get("/", authCheck, graphController.getDescribeGraph);
|
|
|
|
router.get("/info", authCheck, graphController.getGraphInfo);
|
|
|
|
router.get("/node/:pubKey", authCheck, graphController.getGraphNode);
|
2019-01-11 04:08:24 +00:00
|
|
|
router.get("/edge/:chanid", authCheck, graphController.getGraphEdge);
|
2018-11-04 23:47:00 +00:00
|
|
|
|
|
|
|
module.exports = router;
|