Lambda-School-Labs/Labs26-StorySquad-BE-TeamB

View on GitHub
api/middleware/dsAuthMiddleware.js

Summary

Maintainability
A
0 mins
Test Coverage
/* istanbul ignore file */
const dsAuth = (req, res, next) => {
  next();
  // res.status(401).json({ error: 'Not authorized.' });
};

module.exports = dsAuth;