christmas/middlewares/publicRoute.js

11 lines
257 B
JavaScript
Raw Normal View History

2020-11-08 14:23:51 -08:00
const verifyAuth = require('./verifyAuth')
2020-12-01 19:09:25 -08:00
const publicMiddleware = () => global._CC.config.wishlist.public
2020-11-08 14:23:51 -08:00
? (req, res, next) => {
if (!req.user) req.user = { _id: 'Unknown' }
next()
}
: verifyAuth()
module.exports = publicMiddleware