-
Notifications
You must be signed in to change notification settings - Fork 0
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
[Feature/user-profile-create] 유저 인증 여부 API 구현 완료 #38
Conversation
- 기존의 index 값으로 조회하던 방식 제거
- Dev prod 환경 추가 - mongo 제거
Kudos, SonarCloud Quality Gate passed! |
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.
내용 모두 확인했습니다! 수고하셨어요 😊
@Auth(require = true) | ||
@GetMapping("/auth") | ||
@Operation(summary = "유저 인증 여부") | ||
@SecurityRequirement(name = "bearerAuth") |
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.
이중 어느것 일가요?
@Auth는 커스텀 어노테이션!
@operation는 API 설명!
@securityrequirement 이 API는 Swagger에서 토큰 전달하는 설정입니다! -> Swagger에서 자물쇠가 생깁니다!
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.
@securityrequirement 이거였어요 : )
작업 내용
유저 인증 여부 API 입니다. 해당 유저가 학교 메일 인증이 완료된 유저인지 확인하는 API입니다.
기존의 Index로 조회하던 방식에서 deviceId로 변경하였습니다. 그 이유는 Index로 조회하는 것에 대해서 테스트 환경에서 Cardinality가 Index 다음으로 높은 DeviceId를 기반으로 조회를 하여 효율적인 테스트 환경 구축을 위해 조회 방식을 바꾸었습니다.
관련 이슈
#37