Pergunta

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

Nenhuma solução correta

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top