2018-03-17 15:43:39 +01:00
|
|
|
require File.expand_path('boot', __dir__)
|
2013-11-13 23:09:38 +01:00
|
|
|
|
|
|
|
require 'rails/all'
|
2016-12-23 22:47:34 +01:00
|
|
|
require 'action_view/encoded_mail_to/mail_to_with_encoding'
|
2013-11-13 23:09:38 +01:00
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
2014-03-18 15:40:13 +01:00
|
|
|
Bundler.require(*Rails.groups)
|
2013-11-13 23:09:38 +01:00
|
|
|
|
|
|
|
module AgendaDuLibreRails
|
2014-08-06 14:47:47 +02:00
|
|
|
# All the specific configuraton for ADL
|
2013-11-13 23:09:38 +01:00
|
|
|
class Application < Rails::Application
|
2017-10-21 22:12:19 +02:00
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
|
|
config.load_defaults 5.1
|
2014-08-06 14:47:47 +02:00
|
|
|
# Settings in config/environments/* take precedence over those specified
|
|
|
|
# here.
|
2013-11-13 23:09:38 +01:00
|
|
|
# Application configuration should go into files in config/initializers
|
|
|
|
# -- all .rb files in that directory are automatically loaded.
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# Set Time.zone default to the specified zone and make Active Record
|
|
|
|
# auto-convert to this zone.
|
|
|
|
# Run "rake -D time" for a list of tasks for finding time zone names.
|
|
|
|
# Default is UTC.
|
2013-11-13 23:09:38 +01:00
|
|
|
# config.time_zone = 'Central Time (US & Canada)'
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# The default locale is :en and all translations from
|
|
|
|
# config/locales/*.rb,yml are auto loaded.
|
|
|
|
# config.i18n.load_path +=
|
|
|
|
# Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
2014-08-25 19:49:06 +02:00
|
|
|
config.i18n.load_path +=
|
|
|
|
Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
|
2013-11-13 23:09:38 +01:00
|
|
|
# config.i18n.default_locale = :de
|
2013-11-14 11:28:19 +01:00
|
|
|
config.i18n.default_locale = :fr
|
2019-04-25 14:49:27 +02:00
|
|
|
config.i18n.available_locales = %i[de en fr nl pt-BR]
|
2019-04-25 15:57:09 +02:00
|
|
|
config.i18n.fallbacks = %i[en fr]
|
2014-01-01 21:55:20 +01:00
|
|
|
|
2014-07-07 13:49:31 +02:00
|
|
|
config.action_mailer.default_options = {
|
|
|
|
from: 'moderateurs@agendadulibre.org',
|
|
|
|
to: 'moderateurs@agendadulibre.org'
|
|
|
|
}
|
2014-07-07 13:14:17 +02:00
|
|
|
|
2016-02-13 17:24:23 +01:00
|
|
|
config.action_dispatch.default_headers['X-Frame-Options'] = 'ALLOWALL'
|
2015-07-25 18:32:27 +02:00
|
|
|
|
2016-05-22 00:14:43 +02:00
|
|
|
# In rails 4, plugin and vendor images need to be precompiled
|
2017-04-22 20:01:47 +02:00
|
|
|
config.assets.precompile += %w[*.png *.jpg *.jpeg *.gif]
|
2018-02-07 14:41:35 +01:00
|
|
|
|
|
|
|
# Rails 5 now defaults to csrf tokens per form, which breaks adl for the
|
|
|
|
# time being
|
|
|
|
# TODO
|
|
|
|
config.action_controller.per_form_csrf_tokens = false
|
2018-09-30 19:02:49 +02:00
|
|
|
|
|
|
|
config.active_record.sqlite3.represent_boolean_as_integer = true
|
2019-04-26 11:13:53 +02:00
|
|
|
|
|
|
|
config.cloud_threshold = 3
|
2013-11-13 23:09:38 +01:00
|
|
|
end
|
|
|
|
end
|