Sha256: 2493c53b48c453f74b2458714cb55c7870153a186d4b5811d1294e40599a43d1
Contents?: true
Size: 965 Bytes
Versions: 7
Compression:
Stored size: 965 Bytes
Contents
RailsAdminCMS.config do |config| # Defines the base controller inherited from # config.parent_controller = ::ApplicationController # Defines the base mailer inherited from # config.parent_mailer = ::ApplicationMailer # Defines if PaperTrail support is used # config.with_paper_trail = false # Defines the maximum number of fields a Form defined admin side has # * it is important to note that rake cms:adjust_max_size needs to be run if that number changes # config.custom_form_max_size = 20 # Defines if Forms defined admin side need their body to be editable # config.with_email_body = false # Defines iframe permissions: same host, different host or all # config.allow_iframe_from = 'SAMEORIGIN' # config.allow_iframe_from = 'ALLOW-FROM https://www.google.com' # config.allow_iframe_from = 'ALLOWALL' # Defines the number of lines picked from exception backtrace in 'cms_logger' # config.exception_backtrace_size = 10 end
Version data entries
7 entries across 7 versions & 1 rubygems