Skip to content

Commit

Permalink
Removing offset/limit from template when they aren't explicitly reque…
Browse files Browse the repository at this point in the history
…sted.
  • Loading branch information
ldaugusto committed Jan 8, 2025
1 parent 5f92f72 commit 56bdaa8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ default List<AutomationRuleEvaluatorModel<?>> find(String workspaceId, UUID proj

default List<AutomationRuleEvaluatorModel<?>> find(String workspaceId, UUID projectId,
AutomationRuleEvaluatorCriteria criteria) {
return find(workspaceId, projectId, criteria, 0, Integer.MAX_VALUE);
return find(workspaceId, projectId, criteria, null, null);
}

@SqlUpdate("""
Expand Down

0 comments on commit 56bdaa8

Please sign in to comment.