Sha256: ca4d9624c53e02950f110d53e38ac5f8b4795aa8672259c64ea80122fc306976
Contents?: true
Size: 1.49 KB
Versions: 10
Compression:
Stored size: 1.49 KB
Contents
Fae.setup do |config| ## devise_mailer_sender # This email address will get passed to Devise and # used as the from address in the password reset emails. # config.devise_mailer_sender = 'change-me@example.com' ## dashboard_exclusions # The dashboard will show all objects with recent activity. # To exclude any objects, add them to this array. # config.dashboard_exclusions = %w( Gallery ) ## max_image_upload_size # This will set a file size limit on image uploads in MBs. # The default is 2 MB. # config.max_image_upload_size = 2 ## max_file_upload_size # This will set a file size limit on file uploads in MBs. # The default is 5 MB. # config.max_file_upload_size = 5 ## languages # This hash sets the supported languages for the multiple # language toggle feature. # config.languages = { # en: 'English', # zh: 'Chinese' # } ## recreate_versions # Triggers `Fae::Image` to recreate Carrierwave versions after save. # Defaults to false # config.recreate_versions = false ## track_changes # This is the global toggle for the change tracker. # Defaults to true # config.track_changes = true ## tracker_history_length # This defines how many changes per object are kept in the DB # via the change tracker. # Defaults to 15 # config.tracker_history_length = 15 ## disabled_environments # This option will disable Fae complete when the app is running # on one of the defined environments config.disabled_environments = [ :stage ] end
Version data entries
10 entries across 10 versions & 2 rubygems