Sha256: 37ecc6be342e64796eee39a82021b98a530fbd95c8798ce3d3714694b95e76a3

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-invites-3.4.1 test/app/controllers/application_controller.rb
muck-invites-3.0.0 test/rails_test/app/controllers/application_controller.rb