Skip to content

Commit

Permalink
[fix] resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
PicturePark1101 committed Jul 15, 2024
1 parent f975bbc commit aa0ff0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,4 @@ public List<Favorite> findAllByIds(final List<Long> ids) {
public List<Favorite> findAllByUserId(final Long userId) {
return favoriteRepository.findByUserIdOrderByCreatedAtDesc(userId);
}

public List<Favorite> findAllByUserId(final Long id) {
return favoriteRepository.findAllByUserId(id);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static FavoriteWithStatusResponse of(Favorite favorite, boolean isReporte
return new FavoriteWithStatusResponse(
favorite.getId(),
favorite.getName(),
favorite.getImage_url(),
favorite.getImageUrl(),
FavoriteResponseUtil.getDetail(favorite.getDetail()),
isReported);
}
Expand Down

0 comments on commit aa0ff0e

Please sign in to comment.