2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-03 23:15:24 +00:00
RTL/routes/payments.js
2019-01-01 11:26:51 -05:00

9 lines
261 B
JavaScript

const PaymentsController = require("../controllers/payments");
const express = require("express");
const router = express.Router();
const authCheck = require("./authCheck");
router.get("/", authCheck, PaymentsController.getPayments);
module.exports = router;