2016-11-29 04:45:13 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-11 05:27:03 +10:00
|
|
|
module Admin
|
|
|
|
class PubsubhubbubController < BaseController
|
|
|
|
def index
|
2017-04-11 09:11:41 +10:00
|
|
|
@subscriptions = Subscription.order('id desc').includes(:account).page(params[:page])
|
2017-04-11 05:27:03 +10:00
|
|
|
end
|
2016-11-29 04:45:13 +11:00
|
|
|
end
|
|
|
|
end
|