Fix search across reports, search all readable projects [SCI-2823]

This commit is contained in:
Oleksii Kriuchykhin 2018-11-30 11:46:13 +01:00
parent a0f8235846
commit bf3c7e7840

View file

@ -43,11 +43,8 @@ class Report < ApplicationRecord
new_query =
Report
.distinct
.joins('LEFT OUTER JOIN users ON users.id = reports.user_id ' \
'OR users.id = reports.last_modified_by_id')
.where('reports.project_id IN (?)', project_ids)
.where('reports.user_id = (?)', user.id)
.where_attributes_like([:name, :description], query, options)
.where_attributes_like(%i(name description), query, options)
# Show all results if needed
if page == Constants::SEARCH_NO_LIMIT