mirror of
https://github.com/redmine/redmine.git
synced 2025-11-14 17:26:06 +01:00
6 lines
182 B
Ruby
6 lines
182 B
Ruby
|
|
# Only call Engines.init once, in the after_initialize block so that Rails
|
||
|
|
# plugin reloading works when turned on
|
||
|
|
config.after_initialize do
|
||
|
|
Engines.init if defined? :Engines
|
||
|
|
end
|