[FIX] 초대코드 등록시 club-service의 header에 userReferenceId 주입#154
Open
jungyuminn wants to merge 1 commit intodevelopmentfrom
Open
[FIX] 초대코드 등록시 club-service의 header에 userReferenceId 주입#154jungyuminn wants to merge 1 commit intodevelopmentfrom
jungyuminn wants to merge 1 commit intodevelopmentfrom
Conversation
EeeasyCode
approved these changes
Nov 26, 2024
Member
EeeasyCode
left a comment
There was a problem hiding this comment.
고생하셨어요~~!
올라온 PR들은 최종 발표 이후에 merge 진행해봅시다! 서비스 안정성을 위해서 ㅎㅎ
Comment on lines
+48
to
+53
| HttpHeaders headers = new HttpHeaders(); | ||
| headers.set("X-USER-REFERENCE-ID", userReferenceId); | ||
|
|
||
| HttpEntity<Long> requestEntity = new HttpEntity<>(clubId, headers); | ||
|
|
||
| ResponseEntity<Void> response = restTemplate.postForEntity(url, requestEntity, Void.class); |
Member
There was a problem hiding this comment.
이 부분에 대해서는 다음 스프린트 때 다시 어떻게 적용해야할지 고민해봐야겠네요!
고생 많으셨습니다 :)
This file contains hidden or 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
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.
1. 관련 이슈
#151
2. 구현한 내용 또는 수정한 내용
HttpHeader를 사용하여 club-service의 authroize-admin 호출 시 header에 userReferenceId를 주입합니다.
clubId는 그대로 요청 본문에 직접 전달합니다.
3. TODO
4. 배포 전 Checklist
@EeeasyCode