Skip to content

Commit

Permalink
AYS-495 | The Page Size Message Changed (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
MenekseYuncu authored Oct 15, 2024
1 parent 0445c7e commit 5b2bc1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/ays/common/model/AysPageable.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public class AysPageable extends AysSort {

/**
* Represents the size of the page.
* The value must be between 10 and 10, specifying the number of items per page.
* The value must be 10 , specifying the number of items per page.
*/
@Range(min = 10, max = 10)
@Range(min = 10, max = 10, message = "must be 10")
private int pageSize;

/**
Expand Down

0 comments on commit 5b2bc1a

Please sign in to comment.