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
In REDMINE 5 the new filter "any searchable text" can't be use with multiproject plugin because the plugin override project_statement with issue's information.
You must override the method sql_for_any_searchable_field of issue_query.rb to add .joins(:issues) to the definition of project_scope.
Hello,
In REDMINE 5 the new filter "any searchable text" can't be use with multiproject plugin because the plugin override project_statement with issue's information.
You must override the method sql_for_any_searchable_field of issue_query.rb to add .joins(:issues) to the definition of project_scope.
project_scope = Project.joins(:issues).allowed_to(:view_issues)
Thanks
The text was updated successfully, but these errors were encountered: