blob: 95f79c52096890357e0037144f5c8ba6f64c03ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
module Admin
class PubsubhubbubController < BaseController
def index
@subscriptions = Subscription.order('id desc').includes(:account).paginate(page: params[:page], per_page: 40)
end
end
end
|