2016-11-28 11:45:13 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::PubsubhubbubController < ApplicationController
|
|
|
|
before_action :require_admin!
|
|
|
|
|
2016-12-13 06:42:10 -06:00
|
|
|
layout 'admin'
|
2016-11-28 11:45:13 -06:00
|
|
|
|
|
|
|
def index
|
2016-11-28 12:24:49 -06:00
|
|
|
@subscriptions = Subscription.order('id desc').includes(:account).paginate(page: params[:page], per_page: 40)
|
2016-11-28 11:45:13 -06:00
|
|
|
end
|
|
|
|
end
|