mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 05:26:17 +02:00
Merge pull request #2440 from internetee/remove-max-limit-records
Removed 200 limit of records if nil
This commit is contained in:
commit
c79662003f
3 changed files with 3 additions and 3 deletions
|
@ -132,7 +132,7 @@ module Repp
|
|||
end
|
||||
|
||||
def limit
|
||||
index_params[:limit] || 200
|
||||
index_params[:limit]
|
||||
end
|
||||
|
||||
def offset
|
||||
|
|
|
@ -147,7 +147,7 @@ module Repp
|
|||
end
|
||||
|
||||
def limit
|
||||
index_params[:limit] || 200
|
||||
index_params[:limit]
|
||||
end
|
||||
|
||||
def offset
|
||||
|
|
|
@ -229,7 +229,7 @@ module Repp
|
|||
end
|
||||
|
||||
def limit
|
||||
index_params[:limit] || 200
|
||||
index_params[:limit]
|
||||
end
|
||||
|
||||
def offset
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue