summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2017-02-17 22:57:50 +0000
committerAchilleas Pipinellis <axilleas@axilleas.me>2017-02-17 22:57:50 +0000
commit13ad37d8c252f4e4cd7d954bebc0795f443cbf39 (patch)
tree9ad47b209b4cb39de2133e2f86d05d73f7986202
parenta0a81caf4c9dcf6b848c967da84849c60bf081b7 (diff)
parente4a26c0cdbc8bde45941d452fdf5057ef2cde0f6 (diff)
downloadgitlab-ce-13ad37d8c252f4e4cd7d954bebc0795f443cbf39.tar.gz
Merge branch 'directly-addressed-todo-docs' into 'master'
Add docs for directly addressed todos See merge request !9312
-rw-r--r--doc/workflow/todos.md26
1 files changed, 25 insertions, 1 deletions
diff --git a/doc/workflow/todos.md b/doc/workflow/todos.md
index 99d7c18f072..6eb457fde3f 100644
--- a/doc/workflow/todos.md
+++ b/doc/workflow/todos.md
@@ -32,6 +32,29 @@ A Todo appears in your Todos dashboard when:
>**Note:** Commenting on a commit will _not_ trigger a Todo.
+### Directly addressed Todos
+
+> [Introduced][ce-7926] in GitLab 9.0.
+
+If you are mentioned at the start of a line, the todo you receive will be listed
+as 'directly addressed'. For instance, in this comment:
+
+```markdown
+@alice What do you think? cc: @bob
+
+- @carol can you please have a look?
+
+>>>
+@dan what do you think?
+>>>
+
+@erin @frank thank you!
+```
+
+The people receiving directly addressed todos are `@alice`, `@erin`, and
+`@frank`. Directly addressed todos only differ from mention todos in their type,
+for filtering; otherwise, they appear as normal.
+
### Manually creating a Todo
You can also add an issue or merge request to your Todos dashboard by clicking
@@ -85,8 +108,9 @@ There are four kinds of filters you can use on your Todos dashboard.
| Project | Filter by project |
| Author | Filter by the author that triggered the Todo |
| Type | Filter by issue or merge request |
-| Action | Filter by the action that triggered the Todo (Assigned or Mentioned)|
+| Action | Filter by the action that triggered the Todo |
You can also filter by more than one of these at the same time.
[ce-2817]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2817
+[ce-7926]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7926