demarches-normaliennes/config/application.rb

79 lines
3.5 KiB
Ruby
Raw Normal View History

require File.expand_path('boot', __dir__)
2015-08-10 11:05:06 +02:00
require 'rails/all'
require_relative 'application_name'
2015-08-10 11:05:06 +02:00
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
Dotenv::Railtie.load
module TPS
2015-08-10 11:05:06 +02:00
class Application < Rails::Application
config.load_defaults 6.0
2015-08-10 11:05:06 +02:00
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
# The default autoloader since Rails 6.0 defaults is zeitwerk.
# However, to split the work, we will move to zeitwerk only in a future PR.
config.autoloader = :classic
2015-08-10 11:05:06 +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.
2018-10-25 15:32:48 +02:00
config.time_zone = 'Paris'
2015-08-10 11:05:06 +02:00
# The default locale is :fr and all translations from config/locales/*.rb,yml are auto loaded.
2015-08-10 11:05:06 +02:00
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
2015-08-21 11:37:13 +02:00
config.i18n.default_locale = :fr
config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
config.i18n.available_locales = [:fr, :en]
config.i18n.fallbacks = [:fr]
2015-08-10 11:05:06 +02:00
config.assets.paths << Rails.root.join('app', 'assets', 'javascript')
2017-04-04 14:37:50 +02:00
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
2018-10-01 13:55:12 +02:00
config.assets.precompile += ['.woff']
2015-08-10 11:05:06 +02:00
2017-10-03 16:19:25 +02:00
config.active_job.queue_adapter = :delayed_job
# The default list used to be accessible through `ActionView::Base.sanitized_allowed_tags`,
# but a regression in Rails 6.0 makes it unavailable.
# It should be fixed in Rails 6.1.
# See https://github.com/rails/rails/issues/39586
# default_allowed_tags = ActionView::Base.sanitized_allowed_tags
default_allowed_tags = ['strong', 'em', 'b', 'i', 'p', 'code', 'pre', 'tt', 'samp', 'kbd', 'var', 'sub', 'sup', 'dfn', 'cite', 'big', 'small', 'address', 'hr', 'br', 'div', 'span', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ul', 'ol', 'li', 'dl', 'dt', 'dd', 'abbr', 'acronym', 'a', 'img', 'blockquote', 'del', 'ins']
config.action_view.sanitized_allowed_tags = default_allowed_tags + ['u']
2020-01-28 12:02:06 +01:00
# Some mobile browsers have a behaviour where, although they will delete the session
# cookie when the browser shutdowns, they will still serve a cached version
# of the page on relaunch.
# The CSRF token in the HTML is then mismatched with the CSRF token in the session cookie
# (because the session cookie has been cleared). This causes form submissions to fail with
# a "ActionController::InvalidAuthenticityToken" exception.
# To prevent this, tell browsers to never cache the HTML of a page.
# (This doesnt affect assets files, which are still sent with the proper cache headers).
#
# See https://github.com/rails/rails/issues/21948
config.action_dispatch.default_headers['Cache-Control'] = 'no-store, no-cache'
config.to_prepare do
# Make main application helpers available in administrate
Administrate::ApplicationController.helper(TPS::Application.helpers)
end
config.middleware.use Rack::Attack
2019-07-04 12:36:17 +02:00
config.middleware.use Flipper::Middleware::Memoizer, preload_all: true
2019-11-19 14:40:28 +01:00
config.ds_weekly_overview = ENV['APP_NAME'] == 'tps'
config.ds_autosave = {
debounce_delay: 3000,
status_visible_duration: 6000
}
config.skylight.probes += [:graphql]
2015-08-10 11:05:06 +02:00
end
end