File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/com/somemore/recruitboard/repository Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -214,13 +214,13 @@ public Page<RecruitBoardDetail> findAllNearby(RecruitBoardNearByCondition condit
214214 public Page <RecruitBoard > findAllByCenterId (UUID centerId ,
215215 RecruitBoardSearchCondition condition ) {
216216
217- BooleanExpression exp = isNotDeleted ()
218- .and (centerIdEq (centerId ))
217+ BooleanExpression exp = centerIdEq (centerId )
219218 .and (keywordEq (condition .keyword ()))
220219 .and (volunteerCategoryEq (condition .category ()))
221220 .and (regionEq (condition .region ()))
222221 .and (admittedEq (condition .admitted ()))
223- .and (statusEq (condition .status ()));
222+ .and (statusEq (condition .status ()))
223+ .and (isNotDeleted ());
224224
225225 Pageable pageable = condition .pageable ();
226226
You can’t perform that action at this time.
0 commit comments