This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-28 09:45:13 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::PubsubhubbubController < ApplicationController
|
|
|
|
before_action :require_admin!
|
|
|
|
|
2016-12-13 04:42:10 -08:00
|
|
|
layout 'admin'
|
2016-11-28 09:45:13 -08:00
|
|
|
|
|
|
|
def index
|
2016-11-28 10:24:49 -08:00
|
|
|
@subscriptions = Subscription.order('id desc').includes(:account).paginate(page: params[:page], per_page: 40)
|
2016-11-28 09:45:13 -08:00
|
|
|
end
|
|
|
|
end
|