Judge0Tsting / app /controllers /application_controller.rb
AdityaSharmaTech's picture
Upload 177 files
def1299 verified
raw
history blame contribute delete
330 Bytes
class ApplicationController < SessionsController
private
def pagination_dict(collection)
{
current_page: collection.current_page,
next_page: collection.next_page,
prev_page: collection.previous_page,
total_pages: collection.total_pages,
total_count: collection.total_entries
}
end
end