Sha256: ddb6eadf3c828c2bd1ccfbd4f936f4f116e6dc54df4a648699983d69386e4b14

Contents?: true

Size: 1.69 KB

Versions: 5

Compression:

Stored size: 1.69 KB

Contents

EffectiveAssets.setup do |config|
  config.assets_table_name = :assets
  config.attachments_table_name = :attachments

  config.uploader = 'AssetUploader'   # Must extend from EffectiveAssetsUploader

  # Authorization Method
  #
  # This method is called by all controller actions with the appropriate action and resource
  # If the method returns false, an Effective::AccessDenied Error will be raised (see README.md for complete info)
  #
  # Use via Proc (and with CanCan):
  # config.authorization_method = Proc.new { |controller, action, resource| authorize!(action, resource) }
  #
  # Use via custom method:
  # config.authorization_method = :my_authorization_method
  #
  # And then in your application_controller.rb:
  #
  # def my_authorization_method(action, resource)
  #   current_user.is?(:admin)
  # end
  #
  # Or disable the check completely:
  # config.authorization_method = false
  config.authorization_method = Proc.new { |controller, action, resource| authorize!(action, resource) } # CanCanCan

  # This is your S3 bucket information
  config.aws_bucket = ''              # ENV.fetch('AWS_S3_BUCKET')
  config.aws_access_key_id = ''       # ENV.fetch('AWS_ACCESS_KEY_ID')
  config.aws_secret_access_key = ''   # ENV.fetch('AWS_SECRET_ACCESS_KEY')
  config.aws_region = 'us-east-1'

  config.aws_path = 'assets/'

  # This is the default aws_acl all assets will be created with
  # Unless you override the value by passing :aws_acl => '' to the asset_box_input, Asset.create_from_url, or Asset.create_from_string
  # Valid settings are public-read, authenticated-read
  config.aws_acl = 'public-read'

  # Register Effective::Asset with ActiveAdmin if ActiveAdmin is present
  config.use_active_admin = true
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
effective_assets-1.9.4 config/effective_assets.rb
effective_assets-1.9.3 config/effective_assets.rb
effective_assets-1.9.2 config/effective_assets.rb
effective_assets-1.9.1 config/effective_assets.rb
effective_assets-1.9.0 config/effective_assets.rb