Skip to content

Commit

Permalink
Merge pull request #13 from Hey-Porori/setting
Browse files Browse the repository at this point in the history
hotfix: querydsl gradle오류 수정
  • Loading branch information
minsu20 authored Aug 12, 2023
2 parents 1a6191e + aa33055 commit 98d5562
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.querydsl.jpa.impl.JPAQueryFactory;
import porori.backend.user.domain.user.application.dto.response.CommunityUserInfoBlocks;
import porori.backend.user.domain.user.application.dto.response.CommunityUserInfoResponse;
import porori.backend.user.domain.user.application.dto.response.QUserResponseDto_CommunityUserInfoBlocks;
import porori.backend.user.domain.user.application.dto.response.QCommunityUserInfoBlocks;
import porori.backend.user.domain.user.domain.entity.User;

import javax.persistence.EntityManager;
Expand Down Expand Up @@ -32,7 +32,7 @@ public Optional<User> findNotWithdrawByAppleId(String appleId) {

@Override
public CommunityUserInfoResponse findCommunityUserInfoByUserIdList(List<Long> userIdList) {
List<CommunityUserInfoBlocks> blocks = queryFactory.select(new QUserResponseDto_CommunityUserInfoBlocks(
List<CommunityUserInfoBlocks> blocks = queryFactory.select(new QCommunityUserInfoBlocks(
user.userId,
user.imageUrl,
user.backgroundColor,
Expand Down

0 comments on commit 98d5562

Please sign in to comment.