Skip to content

Commit

Permalink
Merge branch 'release/1.3.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
yjkwon07 committed Nov 30, 2021
2 parents 67f26af + e6e23af commit 1f0c867
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion back/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion back/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "urtweet-back",
"version": "1.2.0",
"version": "1.3.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion back/routes/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ router.post('/', async (req, res, next) => {
});

// POST /user/login (로그인)
router.post('/login', isNotLoggedIn, (req, res, next) => {
router.post('/login', (req, res, next) => {
passport.authenticate('local', (err, user, info) => {
if (err) {
return next(err);
Expand Down

0 comments on commit 1f0c867

Please sign in to comment.