1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

fix source indent of config/application.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20442 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-20 11:35:45 +00:00
parent dc4409f462
commit 9f7065c3b7

View File

@ -77,9 +77,11 @@ module RedmineApp
# can change it (environments/ENV.rb would take precedence over it)
config.log_level = Rails.env.production? ? :info : :debug
config.session_store :cookie_store,
config.session_store(
:cookie_store,
:key => '_redmine_session',
:path => config.relative_url_root || '/'
)
if File.exists?(File.join(File.dirname(__FILE__), 'additional_environment.rb'))
instance_eval File.read(File.join(File.dirname(__FILE__), 'additional_environment.rb'))