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