Question

How to list all records in a single page without pagination. Now I didn't use limit to fetch selected records, but it returns only 20 records in a page.

How to remove limit from my query to retrieve all records?

UPDATE

def collection
 @users ||= apply_scopes(User).where(status: 'ACTIVE').order(sort_column + " " + sort_direction).includes(:replies)
end

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top