2019-09-25 16:37:42 +02:00
# frozen_string_literal: true
2020-03-11 16:18:17 +01:00
require_relative 'boot'
2015-05-05 03:10:25 +02:00
require 'csv'
2020-09-09 11:54:49 +02:00
require 'active_record/railtie'
require 'active_storage/engine'
require 'action_controller/railtie'
require 'action_view/railtie'
require 'action_mailer/railtie'
require 'active_job/railtie'
# require 'action_cable/engine'
2020-12-15 15:48:13 +01:00
require 'rails/test_unit/railtie'
2020-09-09 11:54:49 +02:00
# require 'sprockets/railtie'
2016-03-23 18:39:41 +01:00
require 'elasticsearch/rails/instrumentation'
require 'elasticsearch/persistence/model'
2015-05-05 03:10:25 +02:00
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler . require ( * Rails . groups )
module Fablab
class Application < Rails :: Application
2016-05-10 16:50:01 +02:00
require 'fab_manager'
2020-03-13 17:10:38 +01:00
# Initialize configuration defaults for originally generated Rails version.
2020-03-31 11:28:00 +02:00
config . load_defaults 5 . 2
2020-03-31 12:24:36 +02:00
# prevent this new behavior with rails >= 5.0
# see https://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#active-record-belongs-to-required-by-default-option
2020-03-31 12:19:32 +02:00
config . active_record . belongs_to_required_by_default = false
2020-03-13 17:10:38 +01:00
2015-05-05 03:10:25 +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.
# 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.
2016-03-23 18:39:41 +01:00
config . time_zone = Rails . application . secrets . time_zone
2015-05-05 03:10:25 +02:00
config . to_prepare do
2019-09-25 16:37:42 +02:00
Devise :: Mailer . layout 'notifications_mailer'
2015-05-05 03:10:25 +02:00
end
config . active_job . queue_adapter = :sidekiq
config . generators do | g |
g . orm :active_record
2020-12-15 15:48:13 +01:00
g . test_framework :mini_test
2015-05-05 03:10:25 +02:00
end
2016-03-23 18:39:41 +01:00
if Rails . env . development?
config . web_console . whitelisted_ips << '192.168.0.0/16'
2019-09-25 16:37:42 +02:00
config . web_console . whitelisted_ips << '192.168.99.0/16' # docker
config . web_console . whitelisted_ips << '10.0.2.2' # vagrant
2016-03-23 18:39:41 +01:00
end
2016-09-05 16:26:28 +02:00
# load locales for subdirectories
config . i18n . load_path += Dir [ Rails . root . join ( 'config' , 'locales' , '**/*.yml' ) . to_s ]
2016-05-24 18:42:26 +02:00
# enable the app to find locales in plugins locales directory
2016-05-10 16:50:01 +02:00
config . i18n . load_path += Dir [ " #{ Rails . root } /plugins/*/config/locales/*.yml " ]
2021-05-14 11:57:52 +02:00
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
config . i18n . fallbacks = true
2016-05-24 18:42:26 +02:00
# enable the app to find views in plugins views directory
Dir [ " #{ Rails . root } /plugins/*/views " ] . each do | path |
Rails . application . config . paths [ 'app/views' ] << path
end
2022-05-10 05:10:19 +02:00
# disable ANSI color escape codes in active_record if NO_COLOR is defined.
config . colorize_logging = ENV [ 'NO_COLOR' ] ? false : true
2016-05-10 16:50:01 +02:00
FabManager . activate_plugins!
2022-07-27 15:59:22 +02:00
config . action_view . sanitized_allowed_tags = %w( a acronym hr pre table b strong i em li ul ol h1 h2 h3 h4 h5 h6 blockquote br cite sub sup ins p image iframe style )
2022-07-27 10:28:58 +02:00
2016-05-10 16:50:01 +02:00
config . after_initialize do
2019-09-25 16:37:42 +02:00
plugins = FabManager . plugins
plugins & . each ( & :notify_after_initialize )
2020-01-14 14:33:00 +01:00
require 'version'
2020-07-01 16:56:21 +02:00
Version . check
2016-05-10 16:50:01 +02:00
end
2015-05-05 03:10:25 +02:00
end
end