mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 22:46:59 +01:00
9 lines
No EOL
321 B
JavaScript
9 lines
No EOL
321 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.post("/", authCheck, invoicesController.addInvoice);
|
|
|
|
module.exports = router; |