1
0
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-18 17:15:03 +01:00
mastodon/app/controllers/admin/base_controller.rb
Matt Jankowski dbe9f33fdc Admin base controller ()
* 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
2017-04-10 21:27:03 +02:00

10 lines
155 B
Ruby

# frozen_string_literal: true
module Admin
class BaseController < ApplicationController
before_action :require_admin!
layout 'admin'
end
end