about summary refs log tree commit diff
path: root/app/controllers/admin/pubsubhubbub_controller.rb
blob: 31c80a174fb321b98a9d55fcfb4c138c11456fcf (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Admin
  class PubsubhubbubController < BaseController
    def index
      @subscriptions = Subscription.order('id desc').includes(:account).page(params[:page])
    end
  end
end