You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2021. It is now read-only.
By using the redmine_bunner plugin in version 0.2.2 or 0.3.0 the project settings can't be accessed anymore.
It seems that it is caused by issue #120 by changing lib/banners/projects_helper_patch.rb.
If we patch projects_helper_patch.rb and replace again ProjectsHelper.prepend(Banners::ProjectsHelperPatch)
by ProjectsController.helper(Banners::ProjectsHelperPatch)
it works again.
Our patched version looks like this now:
unless ProjectsHelper.included_modules.include?(Banners::ProjectsHelperPatch)
ProjectsController.helper(Banners::ProjectsHelperPatch)
end
I don't know if there are side effects that I could not figure out so far.