Вопрос

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

Нет правильного решения

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top