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
31aa9734
Commit
31aa9734
authored
Feb 16, 2022
by
Siddharth Dungarwal
Committed by
Alex Pooley
Feb 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a search_level field to logging
parent
ef0477e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
app/controllers/search_controller.rb
app/controllers/search_controller.rb
+1
-0
spec/controllers/search_controller_spec.rb
spec/controllers/search_controller_spec.rb
+2
-1
No files found.
app/controllers/search_controller.rb
View file @
31aa9734
...
...
@@ -144,6 +144,7 @@ class SearchController < ApplicationController
payload
[
:metadata
][
'meta.search.filters.state'
]
=
params
[
:state
]
payload
[
:metadata
][
'meta.search.force_search_results'
]
=
params
[
:force_search_results
]
payload
[
:metadata
][
'meta.search.project_ids'
]
=
params
[
:project_ids
]
payload
[
:metadata
][
'meta.search.search_level'
]
=
params
[
:search_level
]
if
search_service
.
abuse_detected?
payload
[
:metadata
][
'abuse.confidence'
]
=
Gitlab
::
Abuse
.
confidence
(
:certain
)
...
...
spec/controllers/search_controller_spec.rb
View file @
31aa9734
...
...
@@ -397,9 +397,10 @@ RSpec.describe SearchController do
expect
(
payload
[
:metadata
][
'meta.search.filters.confidential'
]).
to
eq
(
'true'
)
expect
(
payload
[
:metadata
][
'meta.search.filters.state'
]).
to
eq
(
'true'
)
expect
(
payload
[
:metadata
][
'meta.search.project_ids'
]).
to
eq
(
%w(456 789)
)
expect
(
payload
[
:metadata
][
'meta.search.search_level'
]).
to
eq
(
'multi-project'
)
end
get
:show
,
params:
{
scope:
'issues'
,
search:
'hello world'
,
group_id:
'123'
,
project_id:
'456'
,
project_ids:
%w(456 789)
,
confidential:
true
,
state:
true
,
force_search_results:
true
}
get
:show
,
params:
{
scope:
'issues'
,
search:
'hello world'
,
group_id:
'123'
,
project_id:
'456'
,
project_ids:
%w(456 789)
,
search_level:
'multi-project'
,
confidential:
true
,
state:
true
,
force_search_results:
true
}
end
it
'appends the default scope in meta.search.scope'
do
...
...
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