mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
12 lines
278 B
Ruby
12 lines
278 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::PubsubhubbubController < ApplicationController
|
|
before_action :require_admin!
|
|
|
|
layout 'admin'
|
|
|
|
def index
|
|
@subscriptions = Subscription.order('id desc').includes(:account).paginate(page: params[:page], per_page: 40)
|
|
end
|
|
end
|