Skip to content

Commit

Permalink
fix: allow order array to be empty
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Mar 2, 2024
1 parent e83b4d5 commit 10d89fd
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
* The format of the payload sent by the client.
*
* @see <a href="https://datatables.net/manual/server-side#Sent-parameters">datatables.net reference</a>
*/
@Data
public class DataTablesInput {
/**
Expand Down Expand Up @@ -55,7 +60,6 @@ public class DataTablesInput {
/**
* Order parameter
*/
@NotEmpty
private List<Order> order = new ArrayList<>();

/**
Expand Down

0 comments on commit 10d89fd

Please sign in to comment.