Skip to content

Commit

Permalink
sso error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pbc1017 committed Dec 19, 2023
1 parent 96b9447 commit f408d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion back/routes/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ router.get("/logout", (req, res) => {
if (req.query.userId) {
const logoutUrl = client.getLogoutUrl(
req.query.userId,
process.env.FRONTEND_URL
`https://${process.env.FRONTEND_URL}`
);
req.session.destroy(); // 세션을 삭제합니다.
console.log(logoutUrl);
Expand Down

0 comments on commit f408d5e

Please sign in to comment.