4ada50985a
* Replace will_paginate with kaminari * Use #page instead of #paginate in controllers * Replace will_paginate.page_gap with pagination.truncate in i18n * Customize kaminari views to match prior styles * Set kaminari options to match prior behavior * Replace will_paginate with paginate in views
9 lines
216 B
Ruby
9 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class PubsubhubbubController < BaseController
|
|
def index
|
|
@subscriptions = Subscription.order('id desc').includes(:account).page(params[:page])
|
|
end
|
|
end
|
|
end
|