Skip to content
Snippets Groups Projects
Commit d6d6d3e6 authored by tpgus2603's avatar tpgus2603
Browse files

bugfix

parent b3d9c108
No related branches found
No related tags found
1 merge request!42[#25] 배포코드 master브랜치로 이동
// middlewares/auth.js
exports.isLoggedIn = (req, res, next) => { // 로그인된 사용자만 접근 허용
exports.isLoggedIn = (req, res, next) => { // 로그인된 사용자만 접근 허용
if (req.isAuthenticated()) {
return next();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment