We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d0c3ee commit b9dc750Copy full SHA for b9dc750
init.rb
@@ -26,7 +26,10 @@
26
end
27
28
if Rails.version > '6.0' && Rails.autoloaders.zeitwerk_enabled?
29
- require_relative 'app/overrides/issues/show'
+ Dir.glob("#{Rails.root}/plugins/redmine_custom_fields_groups/app/overrides/**/*.rb").each do |path|
30
+ Rails.autoloaders.main.ignore(path)
31
+ load File.expand_path(path, __FILE__)
32
+ end
33
Rails.application.config.after_initialize do
34
RedmineCustomFieldsGroups.setup
35
0 commit comments