mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-11 13:10:41 +00:00
10 lines
389 B
JavaScript
10 lines
389 B
JavaScript
const invoicesController = require("../controllers/invoices");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("./authCheck");
|
|
|
|
router.get("/", authCheck, invoicesController.listInvoices);
|
|
router.get("/:rHashStr", authCheck, invoicesController.getInvoice);
|
|
router.post("/", authCheck, invoicesController.addInvoice);
|
|
|
|
module.exports = router; |