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
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