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