You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
279 B

  1. # frozen_string_literal: true
  2. class Admin::PubsubhubbubController < ApplicationController
  3. before_action :require_admin!
  4. layout 'public'
  5. def index
  6. @subscriptions = Subscription.order('id desc').includes(:account).paginate(page: params[:page], per_page: 40)
  7. end
  8. end