Skip to content

Commit

Permalink
Add joinMap to criteriaBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
johanah29 committed Oct 31, 2024
1 parent 08fec15 commit 6c87aeb
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
import jakarta.persistence.criteria.Join;
import jakarta.validation.Valid;
import jakarta.validation.constraints.NotBlank;

import java.util.HashMap;
import java.util.Map;

import lombok.RequiredArgsConstructor;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.domain.Specification;
Expand Down Expand Up @@ -55,6 +57,7 @@ public Iterable<ExerciseSimple> scenarioExercises(
pageable,
joinMap),
searchPaginationInput,
Exercise.class);
Exercise.class,
joinMap);
}
}

0 comments on commit 6c87aeb

Please sign in to comment.