Skip to content

Commit

Permalink
EPMRPP-91776 implement organization users dao
Browse files Browse the repository at this point in the history
  • Loading branch information
grabsefx committed Jul 4, 2024
1 parent 4876e01 commit 4686f29
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public List<OrganizationUserProfile> findByFilter(Queryable filter) {
@Override
public Page<OrganizationUserProfile> findByFilter(Queryable filter, Pageable pageable) {
SelectQuery<? extends Record> query = QueryBuilder.newBuilder(filter).with(pageable).build();
if (LOGGER.isInfoEnabled()) {
LOGGER.info("Find organization users query: {}", query);
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Find organization users query: {}", query);
}
return PageableExecutionUtils.getPage(
ORGANIZATION_USERS_LIST_FETCHER.apply(dsl.fetch(query)),
Expand Down

0 comments on commit 4686f29

Please sign in to comment.