forked from cybrespace/mastodon
		
	* 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
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			155 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			155 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Admin
 | 
						|
  class BaseController < ApplicationController
 | 
						|
    before_action :require_admin!
 | 
						|
 | 
						|
    layout 'admin'
 | 
						|
  end
 | 
						|
end
 |