about summary refs log tree commit diff
path: root/app/controllers/admin/pubsubhubbub_controller.rb
blob: 2677a59e46bb8d40ce70acdf9fb48692f989ce34 (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