Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2019-02-06 15:31:56 +0300
committerRobert Schilling <rschilling@student.tugraz.at>2019-02-21 16:02:38 +0300
commitbd9ae901ec0bc0f9d1060e9128ecd5f8d8127671 (patch)
tree2b0db5ffbc5c37d8e78ff30387c1b48394a687fd /spec/controllers/concerns
parent3de4c8d0462aba1e254a255c438c80092109edf7 (diff)
Ability to filter confidential issues
Add a new search bar filter for confidential issues. Add filtering support to the IssuesFinder.
Diffstat (limited to 'spec/controllers/concerns')
-rw-r--r--spec/controllers/concerns/issuable_collections_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/controllers/concerns/issuable_collections_spec.rb b/spec/controllers/concerns/issuable_collections_spec.rb
index 307c5d60c57..5fdb9fe2ed6 100644
--- a/spec/controllers/concerns/issuable_collections_spec.rb
+++ b/spec/controllers/concerns/issuable_collections_spec.rb
@@ -113,6 +113,7 @@ describe IssuableCollections do
author_id: '2',
author_username: 'user2',
authorized_only: 'true',
+ confidential: 'yes',
due_date: '2017-01-01',
group_id: '3',
iids: '4',
@@ -140,6 +141,7 @@ describe IssuableCollections do
'assignee_username' => 'user1',
'author_id' => '2',
'author_username' => 'user2',
+ 'confidential' => 'yes',
'label_name' => 'foo',
'milestone_title' => 'bar',
'my_reaction_emoji' => 'thumbsup',