Skip to content
Snippets Groups Projects
Commit 79cbafa6 authored by Wo-ogie's avatar Wo-ogie
Browse files

feat: meeting 입장 시 cookie에 저장하는 인증 정보 수정

parent f7b3acd8
Branches
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ function setParticipantDataToCookie(req, res, participant) { ...@@ -77,7 +77,7 @@ function setParticipantDataToCookie(req, res, participant) {
cookieName, cookieName,
JSON.stringify({ JSON.stringify({
meetingId: existCookie.meetingId, meetingId: existCookie.meetingId,
name: existCookie.name, participantId: existCookie.participantId,
}), }),
cookieOptions, cookieOptions,
); );
...@@ -87,7 +87,7 @@ function setParticipantDataToCookie(req, res, participant) { ...@@ -87,7 +87,7 @@ function setParticipantDataToCookie(req, res, participant) {
cookieName, cookieName,
JSON.stringify({ JSON.stringify({
meetingId: participant.MeetingId, meetingId: participant.MeetingId,
name: participant.name, participantId: participant.id,
}), }),
cookieOptions, cookieOptions,
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment