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
path: root/app
diff options
context:
space:
mode:
authorSean McGivern <sean@mcgivern.me.uk>2017-02-08 16:32:55 +0300
committerSean McGivern <sean@mcgivern.me.uk>2017-02-08 16:32:55 +0300
commit4c8a1d3a3d2a8ea1e67519ffb70ff5a224b6a26e (patch)
tree9c70030db97d9a7caaa97388714db7feffc384d5 /app
parent9ce16b48713e6a7bd8af20ea2f652dad804712fe (diff)
parente4029070a205351ca9677311c9675f4f933e8f45 (diff)
Merge branch '26705-filter-todos-by-manual-add' into 'master'
Filter todos by manual add Closes #26705 See merge request !8861
Diffstat (limited to 'app')
-rw-r--r--app/helpers/todos_helper.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/helpers/todos_helper.rb b/app/helpers/todos_helper.rb
index c568cca9e5e..d7d51c99979 100644
--- a/app/helpers/todos_helper.rb
+++ b/app/helpers/todos_helper.rb
@@ -86,7 +86,9 @@ module TodosHelper
[
{ id: '', text: 'Any Action' },
{ id: Todo::ASSIGNED, text: 'Assigned' },
- { id: Todo::MENTIONED, text: 'Mentioned' }
+ { id: Todo::MENTIONED, text: 'Mentioned' },
+ { id: Todo::MARKED, text: 'Added' },
+ { id: Todo::BUILD_FAILED, text: 'Pipelines' }
]
end