Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
fc45b0f3
Commit
fc45b0f3
authored
Nov 03, 2020
by
Terri Chu
Committed by
Heinrich Lee Yu
Nov 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove issue project joins for group/project scoped searches
parent
1da63054
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
ee/lib/elastic/latest/issue_class_proxy.rb
ee/lib/elastic/latest/issue_class_proxy.rb
+23
-0
No files found.
ee/lib/elastic/latest/issue_class_proxy.rb
View file @
fc45b0f3
...
...
@@ -33,6 +33,29 @@ module Elastic
private
# Builds an elasticsearch query that will select documents from a
# set of projects for Group and Project searches, taking user access
# rules for issues into account. Relies upon super for Global searches
def
project_ids_filter
(
query_hash
,
options
)
return
super
if
options
[
:public_and_internal_projects
]
current_user
=
options
[
:current_user
]
scoped_project_ids
=
scoped_project_ids
(
current_user
,
options
[
:project_ids
])
return
super
if
scoped_project_ids
==
:any
context
.
name
(
:project
)
do
query_hash
[
:query
][
:bool
][
:filter
]
||=
[]
query_hash
[
:query
][
:bool
][
:filter
]
<<
{
terms:
{
_name:
context
.
name
,
project_id:
filter_ids_by_feature
(
scoped_project_ids
,
current_user
,
'issues'
)
}
}
end
query_hash
end
def
confidentiality_filter
(
query_hash
,
options
)
current_user
=
options
[
:current_user
]
project_ids
=
options
[
:project_ids
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment