Sha256: 666af69a0ec03c8249c57f7621bb65a0cfa2ff10d2b4cb0b36506e1873e7591a

Contents?: true

Size: 642 Bytes

Versions: 1

Compression:

Stored size: 642 Bytes

Contents

Acu.setup do |config|
  # name it to the Base Application Controller that your project
  # is going to use as a base of all of your controllers.
  config.base_controller = :ApplicationController

  # to tighten the security this is enabled by default
  # i.e if it checked to be true, then if a request didn't match to any of rules, it will get passed through
  # otherwise the requests which don't fit into any of rules, we be denied by default
  config.allow_by_default = false

  # the audit log file, to log how the requests handles, good for production
  # leave it black for nil to disable the logging
  config.audit_log_file   = ""
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails-acu-1.2.1 spec/dummy/config/initializers/acu_setup.rb