You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
394 B

  1. # frozen_string_literal: true
  2. module Admin
  3. class SubscriptionsController < BaseController
  4. def index
  5. authorize :subscription, :index?
  6. @subscriptions = ordered_subscriptions.page(requested_page)
  7. end
  8. private
  9. def ordered_subscriptions
  10. Subscription.order(id: :desc).includes(:account)
  11. end
  12. def requested_page
  13. params[:page].to_i
  14. end
  15. end
  16. end