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

class Admin::PubsubhubbubController < ApplicationController
  before_action :require_admin!

  layout 'admin'

  def index
    @subscriptions = Subscription.order('id desc').includes(:account).paginate(page: params[:page], per_page: 40)
  end
end