Sha256: f107f41b8478001c23b97ac13ede3e0b796924632032335fa19cbed1edd908c1
Contents?: true
Size: 827 Bytes
Versions: 1
Compression:
Stored size: 827 Bytes
Contents
Rails.application.configure do # Session Store config.session_store :cookie_store, expire_after: 1.year, domain: ".#{ENV["BASE_DOMAIN"].presence || "all"}" # 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) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thecore_backend_commons-3.0.6 | config/initializers/thecore_backend_commons_app_configs.rb |