You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If per_page parameter is not a valid integer, MaxValueValidator would raise an ArgumentError - comparison of String with 100 failed (if max_per_page is 100). Because this validation happens before Grape's param validation/coercion, it needs to be manually coerced here.
The text was updated successfully, but these errors were encountered:
If
per_page
parameter is not a valid integer,MaxValueValidator
would raise anArgumentError - comparison of String with 100 failed
(ifmax_per_page
is 100). Because this validation happens before Grape's param validation/coercion, it needs to be manually coerced here.The text was updated successfully, but these errors were encountered: