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
8d752ed8
Commit
8d752ed8
authored
Mar 16, 2021
by
Marcin Sedlak-Jakubowski
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'psiteration-docs' into 'master'
Add iteration list docs See merge request gitlab-org/gitlab!56646
parents
c9081655
3b61a8a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
+44
-0
doc/user/project/img/issue_board_iteration_lists_v13_10.png
doc/user/project/img/issue_board_iteration_lists_v13_10.png
+0
-0
doc/user/project/issue_board.md
doc/user/project/issue_board.md
+44
-0
No files found.
doc/user/project/img/issue_board_iteration_lists_v13_10.png
0 → 100644
View file @
8d752ed8
59.9 KB
doc/user/project/issue_board.md
View file @
8d752ed8
...
...
@@ -340,6 +340,31 @@ As in other list types, click the trash icon to remove a list.
![
Milestone lists
](
img/issue_board_milestone_lists_v13_6.png
)
### Iteration lists **(PREMIUM)**
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/250479) in GitLab 13.10.
> - It's [deployed behind the `board_new_lists` feature flag](../feature_flags.md), disabled by default.
> - It's disabled on GitLab.com.
> - It's recommended for production use.
> - To use it in GitLab self-managed instances, ask a GitLab administrator to [enable it](#enable-or-disable-new-add-list-form).
WARNING:
This feature might not be available to you. Check the
**version history**
note above for details.
You're also able to create lists of an iteration.
These are lists that filter issues by the assigned
iteration. To add an iteration list:
1.
Select
**Create list**
.
1.
Select the
**Iteration**
.
1.
In the dropdown, select an iteration.
1.
Select
**Add to board**
.
Like the milestone lists, you're able to
[
drag issues
](
#drag-issues-between-lists
)
to and from a iteration list to manipulate the iteration of the dragged issues.
![
Iteration lists
](
img/issue_board_iteration_lists_v13_10.png
)
### Group issues in swimlanes **(PREMIUM)**
> - Grouping by epic [introduced](https://gitlab.com/groups/gitlab-org/-/epics/3352) in [GitLab Premium](https://about.gitlab.com/pricing/) 13.6.
...
...
@@ -649,3 +674,22 @@ To disable it:
```
ruby
Feature
.
disable
(
:add_issues_button
)
```
### Enable or disable new add list form **(FREE SELF)**
The new form for adding lists is under development and not ready for production use. It is
deployed behind a feature flag that is
**disabled by default**
.
[
GitLab administrators with access to the GitLab Rails console
](
../../administration/feature_flags.md
)
can enable it.
To enable it:
```
ruby
Feature
.
enable
(
:board_new_list
)
```
To disable it:
```
ruby
Feature
.
disable
(
:board_new_list
)
```
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