bullpen/backend/routes/pitchType.routes.js

22 lines
554 B
JavaScript

const { authJwt } = require("../middleware");
const controller = require("../controllers/pitchType.controller");
module.exports = function(app) {
app.use(function(req, res, next) {
res.header(
"Access-Control-Allow-Headers",
"x-access-token, Origin, Content-Type, Accept"
);
next();
});
app.get(
"/api/pitch_types",
[authJwt.verifyToken],
controller.findAll);
app.get(
"/api/pitch_types/:id",
[authJwt.verifyToken],
controller.findOne);
};