Sha256: 2f4fe7ef9852eea9b133b3a1d4cedd988583a19612c91874e4b566a7fdf1d542

Contents?: true

Size: 296 Bytes

Versions: 3

Compression:

Stored size: 296 Bytes

Contents

class ApplicationController < ActionController::Base
  
  helper :all
  protect_from_forgery
    
  layout 'default'

  protected
    # called by Admin::Muck::BaseController to check whether or not the
    # user should have access to the admin UI
    def admin_access?
      admin?
    end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
muck-auth-3.5.4 test/app/controllers/application_controller.rb
muck-auth-3.5.3 test/app/controllers/application_controller.rb
muck-auth-3.5.2 test/app/controllers/application_controller.rb