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
f493f885
Commit
f493f885
authored
Aug 24, 2017
by
Sean McGivern
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'assignees_filter_issues' into 'master'
Search for issues with multiple assignees See merge request !1889
parents
3c287055
f7599ef0
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
89 additions
and
18 deletions
+89
-18
app/assets/javascripts/filtered_search/filtered_search_token_keys_issues_ee.js
...s/filtered_search/filtered_search_token_keys_issues_ee.js
+11
-3
app/finders/issuable_finder.rb
app/finders/issuable_finder.rb
+1
-13
app/finders/issues_finder.rb
app/finders/issues_finder.rb
+20
-1
app/finders/merge_requests_finder.rb
app/finders/merge_requests_finder.rb
+12
-0
changelogs/unreleased-ee/assignees_filter_issues.yml
changelogs/unreleased-ee/assignees_filter_issues.yml
+4
-0
spec/features/issues/filtered_search/filter_issues_spec.rb
spec/features/issues/filtered_search/filter_issues_spec.rb
+11
-1
spec/finders/issues_finder_spec.rb
spec/finders/issues_finder_spec.rb
+30
-0
No files found.
app/assets/javascripts/filtered_search/filtered_search_token_keys_issues_ee.js
View file @
f493f885
...
...
@@ -18,6 +18,13 @@ const weightConditions = [{
value
:
'
any
'
,
}];
const
alternativeTokenKeys
=
[{
key
:
'
assignee
'
,
type
:
'
string
'
,
param
:
'
username
'
,
symbol
:
'
@
'
,
}];
class
FilteredSearchTokenKeysIssuesEE
extends
gl
.
FilteredSearchTokenKeys
{
static
init
(
availableFeatures
)
{
this
.
availableFeatures
=
availableFeatures
;
...
...
@@ -30,6 +37,7 @@ class FilteredSearchTokenKeysIssuesEE extends gl.FilteredSearchTokenKeys {
if
(
this
.
availableFeatures
&&
this
.
availableFeatures
.
multipleAssignees
)
{
const
assigneeTokenKey
=
tokenKeys
.
find
(
tk
=>
tk
.
key
===
'
assignee
'
);
assigneeTokenKey
.
type
=
'
array
'
;
assigneeTokenKey
.
param
=
'
username[]
'
;
}
tokenKeys
.
push
(
weightTokenKey
);
...
...
@@ -42,7 +50,7 @@ class FilteredSearchTokenKeysIssuesEE extends gl.FilteredSearchTokenKeys {
}
static
getAlternatives
()
{
return
super
.
getAlternatives
(
);
return
alternativeTokenKeys
.
concat
(
super
.
getAlternatives
()
);
}
static
getConditions
()
{
...
...
@@ -62,8 +70,8 @@ class FilteredSearchTokenKeysIssuesEE extends gl.FilteredSearchTokenKeys {
static
searchByKeyParam
(
keyParam
)
{
const
tokenKeys
=
FilteredSearchTokenKeysIssuesEE
.
get
();
const
alternative
TokenKey
s
=
FilteredSearchTokenKeysIssuesEE
.
getAlternatives
();
const
tokenKeysWithAlternative
=
tokenKeys
.
concat
(
alternative
TokenKey
s
);
const
alternatives
=
FilteredSearchTokenKeysIssuesEE
.
getAlternatives
();
const
tokenKeysWithAlternative
=
tokenKeys
.
concat
(
alternatives
);
return
tokenKeysWithAlternative
.
find
((
tokenKey
)
=>
{
let
tokenKeyParam
=
tokenKey
.
key
;
...
...
app/finders/issuable_finder.rb
View file @
f493f885
...
...
@@ -26,7 +26,7 @@ class IssuableFinder
IRRELEVANT_PARAMS_FOR_CACHE_KEY
=
%i[utf8 sort page state]
.
freeze
SCALAR_PARAMS
=
%i(scope state group_id project_id milestone_title assignee_id search label_name sort assignee_username author_id author_username authorized_only due_date iids non_archived weight)
.
freeze
ARRAY_PARAMS
=
{
label_name:
[],
iids:
[]
}.
freeze
ARRAY_PARAMS
=
{
label_name:
[],
iids:
[]
,
assignee_username:
[]
}.
freeze
VALID_PARAMS
=
(
SCALAR_PARAMS
+
[
ARRAY_PARAMS
]).
freeze
attr_accessor
:current_user
,
:params
...
...
@@ -309,18 +309,6 @@ class IssuableFinder
params
[
:sort
]
?
items
.
sort
(
params
[
:sort
],
excluded_labels:
label_names
)
:
items
.
reorder
(
id: :desc
)
end
def
by_assignee
(
items
)
if
assignee
items
=
items
.
where
(
assignee_id:
assignee
.
id
)
elsif
no_assignee?
items
=
items
.
where
(
assignee_id:
nil
)
elsif
assignee_id?
||
assignee_username?
# assignee not found
items
=
items
.
none
end
items
end
def
by_author
(
items
)
if
author
items
=
items
.
where
(
author_id:
author
.
id
)
...
...
app/finders/issues_finder.rb
View file @
f493f885
...
...
@@ -95,7 +95,13 @@ class IssuesFinder < IssuableFinder
end
def
by_assignee
(
items
)
if
assignee
if
assignees
.
any?
assignees
.
each
do
|
assignee
|
items
=
items
.
assigned_to
(
assignee
)
end
items
elsif
assignee
&&
assignees
.
empty?
items
.
assigned_to
(
assignee
)
elsif
no_assignee?
items
.
unassigned
...
...
@@ -106,6 +112,19 @@ class IssuesFinder < IssuableFinder
end
end
def
assignees
return
@assignees
if
defined?
(
@assignees
)
@assignees
=
if
params
[
:assignee_ids
]
User
.
where
(
id:
params
[
:assignee_ids
])
elsif
params
[
:assignee_username
]
User
.
where
(
username:
params
[
:assignee_username
])
else
[]
end
end
def
item_project_ids
(
items
)
items
&
.
reorder
(
nil
)
&
.
select
(
:project_id
)
end
...
...
app/finders/merge_requests_finder.rb
View file @
f493f885
...
...
@@ -24,6 +24,18 @@ class MergeRequestsFinder < IssuableFinder
private
def
by_assignee
(
items
)
if
assignee
items
=
items
.
where
(
assignee_id:
assignee
.
id
)
elsif
no_assignee?
items
=
items
.
where
(
assignee_id:
nil
)
elsif
assignee_id?
||
assignee_username?
# assignee not found
items
=
items
.
none
end
items
end
def
item_project_ids
(
items
)
items
&
.
reorder
(
nil
)
&
.
select
(
:target_project_id
)
end
...
...
changelogs/unreleased-ee/assignees_filter_issues.yml
0 → 100644
View file @
f493f885
---
title
:
Search for issues with multiple assignees
merge_request
:
author
:
spec/features/issues/filtered_search/filter_issues_spec.rb
View file @
f493f885
...
...
@@ -196,7 +196,17 @@ describe 'Filter issues', js: true do
end
it
'filters issues by multiple assignees'
do
skip
(
'to be tested, issue #26546'
)
create
(
:issue
,
project:
project
,
author:
user
,
assignees:
[
user2
,
user
])
input_filtered_search
(
"assignee:@
#{
user
.
username
}
assignee:@
#{
user2
.
username
}
"
)
expect_tokens
([
assignee_token
(
user
.
name
),
assignee_token
(
user2
.
name
)
])
expect_issues_list_count
(
1
)
expect_filtered_search_input_empty
end
end
...
...
spec/finders/issues_finder_spec.rb
View file @
f493f885
...
...
@@ -59,6 +59,36 @@ describe IssuesFinder do
end
end
context
'filtering by assignee IDs'
do
set
(
:user3
)
{
create
(
:user
)
}
let
(
:params
)
{
{
assignee_ids:
[
user2
.
id
,
user3
.
id
]
}
}
before
do
project2
.
add_developer
(
user3
)
issue3
.
assignees
=
[
user2
,
user3
]
end
it
'returns issues assigned to those users'
do
expect
(
issues
).
to
contain_exactly
(
issue3
)
end
end
context
'filtering by assignee usernames'
do
set
(
:user3
)
{
create
(
:user
)
}
let
(
:params
)
{
{
assignee_username:
[
user2
.
username
,
user3
.
username
]
}
}
before
do
project2
.
add_developer
(
user3
)
issue3
.
assignees
=
[
user2
,
user3
]
end
it
'returns issues assigned to those users'
do
expect
(
issues
).
to
contain_exactly
(
issue3
)
end
end
context
'filtering by author ID'
do
let
(
:params
)
{
{
author_id:
user2
.
id
}
}
...
...
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