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
fdb594a0
Commit
fdb594a0
authored
Nov 16, 2020
by
Heinrich Lee Yu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove :filter_bar_iterations feature flag
This enables filtering by iteration in issues and boards
parent
1b2f25bd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
19 deletions
+7
-19
doc/user/search/index.md
doc/user/search/index.md
+1
-0
ee/app/helpers/ee/search_helper.rb
ee/app/helpers/ee/search_helper.rb
+1
-1
ee/changelogs/unreleased/282501-remove-iterations-filter-feature-flag.yml
...released/282501-remove-iterations-filter-feature-flag.yml
+5
-0
ee/config/feature_flags/development/filter_bar_iterations.yml
...onfig/feature_flags/development/filter_bar_iterations.yml
+0
-8
ee/spec/helpers/search_helper_spec.rb
ee/spec/helpers/search_helper_spec.rb
+0
-10
No files found.
doc/user/search/index.md
View file @
fdb594a0
...
...
@@ -44,6 +44,7 @@ groups:
-
Author
-
Assignee
-
[
Milestone
](
../project/milestones/index.md
)
-
[
Iteration
](
../group/iterations/index.md
)
(
[introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/118742
)
in
[
GitLab Starter
](
https://about.gitlab.com/pricing/
)
13.6)
-
Release
-
[
Label
](
../project/labels.md
)
-
My-reaction
...
...
ee/app/helpers/ee/search_helper.rb
View file @
fdb594a0
...
...
@@ -146,7 +146,7 @@ module EE
context
=
@project
.
presence
||
@group
.
presence
context
&&
::
Feature
.
enabled?
(
:filter_bar_iterations
,
context
)
&&
context
.
feature_available?
(
:iterations
)
context
&
.
feature_available?
(
:iterations
)
end
def
gitlab_com_snippet_db_search?
...
...
ee/changelogs/unreleased/282501-remove-iterations-filter-feature-flag.yml
0 → 100644
View file @
fdb594a0
---
title
:
Allow filtering by iteration in issue lists and issue boards
merge_request
:
47766
author
:
type
:
added
ee/config/feature_flags/development/filter_bar_iterations.yml
deleted
100644 → 0
View file @
1b2f25bd
---
name
:
filter_bar_iterations
introduced_by_url
:
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/44690
rollout_issue_url
:
https://gitlab.com/gitlab-org/gitlab/-/issues/118742
milestone
:
'
13.6'
type
:
development
group
:
group::project management
default_enabled
:
false
ee/spec/helpers/search_helper_spec.rb
View file @
fdb594a0
...
...
@@ -80,16 +80,6 @@ RSpec.describe SearchHelper do
it
'does not include iterations endpoint in dashboard context'
do
expect
(
options
[
:data
][
'iterations-endpoint'
]).
to
be
(
nil
)
end
context
'when feature flag is disabled'
do
before
do
stub_feature_flags
(
filter_bar_iterations:
false
)
end
it
'does not include iterations endpoint'
do
expect
(
options
[
:data
][
'iterations-endpoint'
]).
to
be
(
nil
)
end
end
end
context
'when iterations are not available'
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