forked from codesquad-members-2024/issue-tracker
-
Notifications
You must be signed in to change notification settings - Fork 3
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
라벨 수정 기능, 이슈 필터링 기능 오류 해결 #81
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Access token을 요청하여 사용자 정보를 가져온다.
- 이미지 URL을 byte 배열로 변환한 후 변환된 배열로 MultipartFile 객체를 생성한다.
- 회원가입을 하기위해 필요한 MemberCreateDto로 매핑한다.
- 처음 사용자가 깃허브 로그인을 하는 것이라면 회원가입 로직을 수행한다. - 사용자에게 유저 정보와 JWT 토큰을 전달한다.
- 프로필 이미지를 MultipartFile로 변환하여 메타데이터와 함께 저장한다.
- 라벨 개수와 마일스톤 개수를 구하여 반환한다.
- 필터링된 이슈의 개수를 구하는 것이 아니라 전체 이슈의 개수를 구하고 있어 수정하였다.
- Entity의 @Setter를 삭제하면서 구조가 변경됨에 따라 라벨이 수정되는 것이 아니라 생성되는 오류가 발생하여 수정용 Mapper를 추가하였다.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
라벨 수정 기능, 이슈 필터링 기능 오류 해결