Sha256: 1f448bca50103424772b0823712b7e844f498dda295138925d2afb3011e6d49c
Contents?: true
Size: 1.87 KB
Versions: 5
Compression:
Stored size: 1.87 KB
Contents
Authority.configure do |config| # USER_METHOD # =========== # Authority needs the name of a method, available in any controller, which # will return the currently logged-in user. (If this varies by controller, # just create a common alias.) # # Default is: # # config.user_method = :current_user # CONTROLLER_ACTION_MAP # ===================== # For a given controller method, what verb must a user be able to do? # For example, a user can access 'show' if they 'can_read' the resource. # # These can be modified on a per-controller basis; see README. This option # applies to all controllers. # # Defaults are as follows: # # config.controller_action_map = { # :index => 'read', # :show => 'read', # :new => 'create', # :create => 'create', # :edit => 'update', # :update => 'update', # :destroy => 'delete' # } # ABILITIES # ========= # Teach Authority how to understand the verbs and adjectives in your system. Perhaps you # need {:microwave => 'microwavable'}. I'm not saying you do, of course. Stop looking at # me like that. # # Defaults are as follows: # # config.abilities = { # :create => 'creatable', # :read => 'readable', # :update => 'updatable', # :delete => 'deletable' # } # LOGGER # ====== # If a user tries to perform an unauthorized action, where should we log that fact? # Provide a logger object which responds to `.warn(message)`, unless your # security_violation_handler calls a different method. # # Default is: # # config.logger = Logger.new(STDERR) # # Some possible settings: # config.logger = Rails.logger # Log with all your app's other messages # config.logger = Logger.new('log/authority.log') # Use this file # config.logger = Logger.new('/dev/null') # Don't log at all (on a Unix system) end
Version data entries
5 entries across 5 versions & 1 rubygems