mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
dbe9f33fdc
* Add Admin::BaseController to wrap admin area Extracts the setting of the `admin` layout and verifying that users are admins to a common base class for the admin/ controllers. * Add basic coverage for admin/reports and admin/settings controllers
10 lines
240 B
Ruby
10 lines
240 B
Ruby
# 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
|