feat: 기록 생성 시 Image의 FK를 채우는 기능 구현, 기록에 Pool 저장 구현 #46
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.
🌱 관련 이슈
📌 작업 내용 및 특이사항
기록 생성 플로우 정리
구현 사항
addMemoryToImages
)이 분리되어 있었습니다.updateImages
)과 EndPoint가 겹치는 문제가 있었습니다.Pool 연결
📝 참고사항
MemoryController
가ImageUploadService
에 의존하고 있습니다.memoryService.save()
를 호출하고, 결과가 Null이면ApiResponse.fail
을 응답합니다.imageUploadService.addMemoryIdToImages()
를 호출하여 이미지에 기록 ID를 추가합니다.ApiResponse.success
를 응답합니다.