mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 13:36:15 +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
|
end
|
||||||
|
|
||||||
def limit
|
def limit
|
||||||
index_params[:limit] || 200
|
index_params[:limit]
|
||||||
end
|
end
|
||||||
|
|
||||||
def offset
|
def offset
|
||||||
|
|
|
@ -147,7 +147,7 @@ module Repp
|
||||||
end
|
end
|
||||||
|
|
||||||
def limit
|
def limit
|
||||||
index_params[:limit] || 200
|
index_params[:limit]
|
||||||
end
|
end
|
||||||
|
|
||||||
def offset
|
def offset
|
||||||
|
|
|
@ -229,7 +229,7 @@ module Repp
|
||||||
end
|
end
|
||||||
|
|
||||||
def limit
|
def limit
|
||||||
index_params[:limit] || 200
|
index_params[:limit]
|
||||||
end
|
end
|
||||||
|
|
||||||
def offset
|
def offset
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue