-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BE] feat#74#77 회원가입, 로그인 구현 #226
[BE] feat#74#77 회원가입, 로그인 구현 #226
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다.
이왕 하시는김에 로그인없이 "체험하기" 같은 기능도 만들면 좋겠네요.
@UseGuards(LocalAuthGuard) | ||
@Post('login') | ||
async login(@Request() req) { | ||
return this.authService.login(req.user); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
로컬 가드는 역할이 뭔가요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
로그인할때 body로 email, pw 얻어와서 jwt로 바꾸는역할
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
건석님 수고하셨습니다!!
처음하는 작업이라 힘드셨을텐데 잘 하셨군요!
email: signupDto.email, | ||
password: hashedPassword, | ||
nickname: signupDto.nickname, | ||
status: '?' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
status를 통해 활동 정지 상태, 활성 상태 등 이러한 걸 나타내고자 테이블에 넣었었습니다! 지금 당장은 필요하지 않아서 크게 신경쓰시지 않아도 될 듯 합니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다! 로그인 뚝딱하셨네요👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
로그인 굿 고생하셨습니다!
➕ 이슈 번호
🔎 작업 내용
🖼 참고 이미지
회원가입
로그인
로그인 토큰 테스트 (프로필)
✅ Check List