Skip to content

Commit 5c3938a

Browse files
authored
Hotfix : 파티 수정이 db에 반영되지 않는 문제 수정 (#88)
1 parent 614ebce commit 5c3938a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/ita/tinybite/domain/party/service/PartyService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ private PartyDetailResponse convertToDetailResponse(Party party, double distance
304304
.build();
305305
}
306306

307+
@Transactional
307308
public void updateParty(Long partyId, Long userId, PartyUpdateRequest request) {
308309
Party party = partyRepository.findById(partyId)
309310
.orElseThrow(() -> new IllegalArgumentException("파티를 찾을 수 없습니다"));

0 commit comments

Comments
 (0)