diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2023-12-17 15:05:47 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2023-12-17 15:05:47 +0000 |
commit | e566e60e51a740387261a06fe800fefece750fb1 (patch) | |
tree | 5cd940235f90af265d85573518f25a8beebe1bc2 /config/application.rb | |
parent | 4cc0b8d2ca80f4de3a0217184e9ef982f2407c05 (diff) | |
download | redmine-e566e60e51a740387261a06fe800fefece750fb1.tar.gz redmine-e566e60e51a740387261a06fe800fefece750fb1.zip |
Adds test for plugin autoload issue (#36320, #39834).
Patch by @tohosaku.
git-svn-id: https://svn.redmine.org/redmine/trunk@22522 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/application.rb')
-rw-r--r-- | config/application.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/application.rb b/config/application.rb index 48e855c9b..f3b6e82fd 100644 --- a/config/application.rb +++ b/config/application.rb @@ -85,6 +85,9 @@ module RedmineApp # for more options (same options as config.cache_store). config.redmine_search_cache_store = :memory_store + # Sets default plugin directory + config.redmine_plugins_directory = 'plugins' + # Configure log level here so that additional environment file # can change it (environments/ENV.rb would take precedence over it) config.log_level = Rails.env.production? ? :info : :debug |