Merge pull request #2440 from internetee/remove-max-limit-records

Removed 200 limit of records if nil
This commit is contained in:
Timo Võhmar 2022-09-16 14:08:07 +03:00 committed by GitHub
commit c79662003f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -132,7 +132,7 @@ module Repp
end
def limit
index_params[:limit] || 200
index_params[:limit]
end
def offset

View file

@ -147,7 +147,7 @@ module Repp
end
def limit
index_params[:limit] || 200
index_params[:limit]
end
def offset

View file

@ -229,7 +229,7 @@ module Repp
end
def limit
index_params[:limit] || 200
index_params[:limit]
end
def offset