Sha256: 8658aa4df4d9c57bb2b20a972f3937ed448834340d54fd7c6b6d8c6f6e24109c
Contents?: true
Size: 1.72 KB
Versions: 3
Compression:
Stored size: 1.72 KB
Contents
# frozen_string_literal: true require "active_support/configurable" require "logger" module CastleDevise # Configuration object using {ActiveSupport::Configurable} class Configuration include ActiveSupport::Configurable # @!attribute api_secret # @return [String] Your API secret config_accessor(:api_secret) # @!attribute app_id # @return [String] Your Castle App ID config_accessor(:app_id) # @!attribute monitoring_mode # When CastleDevise is in monitoring mode, it sends requests to Castle # but it doesn't act on "deny" verdicts. # # This mode is useful if you're just checking Castle out and you're not yet sure whether # your configuration is correct so you don't accidentally block legitimate users # from logging in/registering. # # @return [true, false] whether to act on deny requests or not config_accessor(:monitoring_mode) { false } # @!attribute logger # @return [Logger] A Logger instance. You might want to use Rails.logger here. config_accessor(:logger) { Logger.new("/dev/null") } # @!attribute before_request_hooks # @return [Array<Proc>] Array of procs that will get called before a request to the Castle API config_accessor(:before_request_hooks) { [] } # @!attribute after_request_hooks # @return [Array<Proc>] Array of procs that will get called after a request to the Castle API config_accessor(:after_request_hooks) { [] } # Adds a new before_request hook # @param blk [Proc] def before_request(&blk) before_request_hooks << blk end # Adds a new after_request hook # @param blk [Proc] def after_request(&blk) after_request_hooks << blk end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
castle_devise-0.3.0 | lib/castle_devise/configuration.rb |
castle_devise-0.2.0 | lib/castle_devise/configuration.rb |
castle_devise-0.1.0 | lib/castle_devise/configuration.rb |