class Gatekeeper::Configuration

Attributes

bypass_allowed_info[RW]

@return [Proc] a block to return bypess all info allowances (ex. for an admin user).

response_ignored_variables[RW]

@return [Array<Symbol>] a list of ignored variables in controller response.

Public Class Methods

new() click to toggle source
# File lib/gatekeeper/configuration.rb, line 9
def initialize
  @bypass_allowed_info = nil
  @response_ignored_variables = []
end