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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-07-01 18:07:40 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-01 18:07:40 +0300
commit04e74bf311de04c1334343a35fe9954953c6413d (patch)
treed2d3e62216291c93bb24a79d9221b0eca3efadcb /doc/user/group/iterations
parent098ec8c914f61780b33bb18e929e25ef59dfb175 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/user/group/iterations')
-rw-r--r--doc/user/group/iterations/index.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/user/group/iterations/index.md b/doc/user/group/iterations/index.md
index 182551c554e..921c40eef73 100644
--- a/doc/user/group/iterations/index.md
+++ b/doc/user/group/iterations/index.md
@@ -48,6 +48,10 @@ Iteration cadences automate some common iteration tasks. They can be used to
automatically create iterations every 1, 2, 3, 4, or 6 weeks. They can also
be configured to automatically roll over incomplete issues to the next iteration.
+With iteration cadences enabled, you must first
+[create an iteration cadence](#create-an-iteration-cadence) before you can
+[create an iteration](#create-an-iteration).
+
### Create an iteration cadence
Prerequisites:
@@ -94,7 +98,7 @@ To create an iteration:
1. On the top bar, select **Menu > Groups** and find your group.
1. On the left sidebar, select **Issues > Iterations**.
-1. Select the three-dot menu (**{ellipsis_v}**) > **Add iteration** for the cadence you want to add to.
+1. Select **New iteration**.
1. Enter the title, a description (optional), a start date, and a due date.
1. Select **Create iteration**. The iteration details page opens.
@@ -191,13 +195,13 @@ can enable it.
To enable it:
```ruby
-Feature.enable(:iterations_cadences)
+Feature.enable(:iteration_cadences)
```
To disable it:
```ruby
-Feature.disable(:iterations_cadences)
+Feature.disable(:iteration_cadences)
```
<!-- ## Troubleshooting