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
959c7fff
Commit
959c7fff
authored
Jun 29, 2021
by
Florie Guibert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up :epic_boards feature flag
Review feedback
parent
428de648
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
app/assets/javascripts/boards/components/board_content.vue
app/assets/javascripts/boards/components/board_content.vue
+5
-4
doc/user/group/epics/epic_boards.md
doc/user/group/epics/epic_boards.md
+1
-5
No files found.
app/assets/javascripts/boards/components/board_content.vue
View file @
959c7fff
...
@@ -36,11 +36,14 @@ export default {
...
@@ -36,11 +36,14 @@ export default {
computed
:
{
computed
:
{
...
mapState
([
'
boardLists
'
,
'
error
'
,
'
addColumnForm
'
]),
...
mapState
([
'
boardLists
'
,
'
error
'
,
'
addColumnForm
'
]),
...
mapGetters
([
'
isSwimlanesOn
'
,
'
isEpicBoard
'
]),
...
mapGetters
([
'
isSwimlanesOn
'
,
'
isEpicBoard
'
]),
useNewBoardColumnComponent
()
{
return
this
.
glFeatures
.
graphqlBoardLists
||
this
.
isSwimlanesOn
||
this
.
isEpicBoard
;
},
addColumnFormVisible
()
{
addColumnFormVisible
()
{
return
this
.
addColumnForm
?.
visible
;
return
this
.
addColumnForm
?.
visible
;
},
},
boardListsToUse
()
{
boardListsToUse
()
{
return
this
.
glFeatures
.
graphqlBoardLists
||
this
.
isSwimlanesOn
||
this
.
isEpicBoard
return
this
.
useNewBoardColumnComponent
?
sortBy
([...
Object
.
values
(
this
.
boardLists
)],
'
position
'
)
?
sortBy
([...
Object
.
values
(
this
.
boardLists
)],
'
position
'
)
:
this
.
lists
;
:
this
.
lists
;
},
},
...
@@ -64,9 +67,7 @@ export default {
...
@@ -64,9 +67,7 @@ export default {
return
this
.
canDragColumns
?
options
:
{};
return
this
.
canDragColumns
?
options
:
{};
},
},
boardColumnComponent
()
{
boardColumnComponent
()
{
return
this
.
glFeatures
.
graphqlBoardLists
||
this
.
isSwimlanesOn
||
this
.
isEpicBoard
return
this
.
useNewBoardColumnComponent
?
BoardColumn
:
BoardColumnDeprecated
;
?
BoardColumn
:
BoardColumnDeprecated
;
},
},
},
},
methods
:
{
methods
:
{
...
...
doc/user/group/epics/epic_boards.md
View file @
959c7fff
...
@@ -7,11 +7,7 @@ info: To determine the technical writer assigned to the Stage/Group associated w
...
@@ -7,11 +7,7 @@ info: To determine the technical writer assigned to the Stage/Group associated w
# Epic Boards **(PREMIUM)**
# Epic Boards **(PREMIUM)**
> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/5067) in GitLab 13.10.
> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/5067) in GitLab 13.10.
> - [Deployed behind a feature flag](../../feature_flags.md), disabled by default.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64761) in GitLab 14.1.
> - [Enabled by default](https://gitlab.com/gitlab-org/gitlab/-/issues/290039) in GitLab 14.0.
> - Enabled on GitLab.com.
> - Recommended for production use.
> - For GitLab self-managed instances, GitLab administrators can opt to [disable it](../../../administration/feature_flags.md).
Epic boards build on the existing
[
epic tracking functionality
](
index.md
)
and
Epic boards build on the existing
[
epic tracking functionality
](
index.md
)
and
[
labels
](
../../project/labels.md
)
. Your epics appear as cards in vertical lists, organized by their assigned
[
labels
](
../../project/labels.md
)
. Your epics appear as cards in vertical lists, organized by their assigned
...
...
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