Sha256: 16a9706b9f0d53df7bd2b10720e266b13124558ff59249e187c2a828dccba9ec

Contents?: true

Size: 296 Bytes

Versions: 2

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

2 entries across 2 versions & 1 rubygems

Version Path
muck-contents-3.0.2 test/rails_test/app/controllers/application_controller.rb
muck-contents-3.0.1 test/rails_test/app/controllers/application_controller.rb