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
|
|
|
|
|
2017-04-10 12:27:03 -07:00
|
|
|
module Admin
|
|
|
|
class PubsubhubbubController < BaseController
|
|
|
|
def index
|
2017-04-10 16:11:41 -07:00
|
|
|
@subscriptions = Subscription.order('id desc').includes(:account).page(params[:page])
|
2017-04-10 12:27:03 -07:00
|
|
|
end
|
2016-11-28 09:45:13 -08:00
|
|
|
end
|
|
|
|
end
|