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
|
|
|
|
@subscriptions = Subscription.order('id desc').includes(:account).paginate(page: params[:page], per_page: 40)
|
|
|
|
end
|
2016-11-28 09:45:13 -08:00
|
|
|
end
|
|
|
|
end
|