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