Sha256: c0e470f9e2b376d4f7da805c601a4e4ca825af8cfed3e2b549dc8b5bb27a3903
Contents?: true
Size: 781 Bytes
Versions: 1
Compression:
Stored size: 781 Bytes
Contents
Rails.application.configure do # I18n config.i18n.available_locales = %w(it en) config.i18n.default_locale = :it config.time_zone = 'Rome' # Active Storage config.active_storage.configure( :Disk, root: Rails.root.join("storage") ) # ActionMailer config.action_mailer.delivery_method = :smtp # AFTER INITIALIZE Good place to load things that must have a bit of initialization # setup on order to work (and not be overrided). config.after_initialize do # include the extensions ActiveRecord::Base.send(:include, ActiveRecordExtensions) Integer.send(:include, FixnumConcern) String.send(:include, StringConcern) User.send(:include, ThecoreBackendCommonsUser) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thecore_backend_commons-2.3.7 | config/initializers/thecore_backend_commons_app_configs.rb |