-
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
feat: store api 개발 및 cd 파일 추가 #19
Merged
Merged
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
사용자가 입력한 주소를 Geocoder API 2.0을 이용하여 좌표로 변환합니다.
Address 객체 타입으로 주소 정보를 저장하던 기존 구조에서 String 타입으로 구조 변경했습니다.
매장 등록 기능을 구현했습니다.
… into feature/store
주소를 요청으로 받아 해당 주소에 대한 좌표 변환 기능을 구현했습니다.
기존에 사용하던 변수명은 의미가 모호하기 때문에, 더 명확하고 변수명으로 변경했습니다. 변경 전: - `x`: 기존의 경도 - 'y': 기존의 위도 변경 후: - `longitude' , 'latitude'
테스트용으로 작성했던 코드를 제거했습니다. 더 이상 필요하지 않은 테스트 코드이며, 코드 베이스를 깔끔하게 유지하기 위해 삭제했습니다.
geocoder api 키가 autowired 되지 않아 발생하는 문제를 해결했습니다.
해당 좌표로부터 일정 거리 내 존재하는 가게 리스트를 반환합니다.
좌표를 기준해 직선 거리가 짧은 최대 4개의 가게를 응답값으로 보내는 기능을 구현했습니다.
jwt 토큰에 있는 정보를 활용하여 회원 정보로 쿠폰 조회를 진행하는 기능을 구현했습니다.
코드 확인했고, CD 동작 확인을 위해 머지 하겠습니다. |
limsubinn
pushed a commit
that referenced
this pull request
Aug 5, 2023
feat: store api 개발 및 cd 파일 추가
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.
가게 등록
가게 조회(좌표 주위)
좌표 반환
cd 파일 추가