diff options
author | Robert Speicher <robert@gitlab.com> | 2016-07-12 19:50:33 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-07-12 19:50:33 +0000 |
commit | 33b4fc315ed504511a7f23835939ff8915e0fe01 (patch) | |
tree | 1d2a3abd23857b283df92640ec9aca5e8f0dd5cf /app/finders | |
parent | 7937014e1c4328d979d5d13eeb02a69ae82bf703 (diff) | |
parent | d957d5f1aa45d3a8474678e5439ccdc09a545482 (diff) | |
download | gitlab-ce-33b4fc315ed504511a7f23835939ff8915e0fe01.tar.gz |
Merge branch 'approval-required-todo' into 'master'
Add approval required todos
Ports the 'approval required' todo type from EE - https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/547
See merge request !5217
Diffstat (limited to 'app/finders')
-rw-r--r-- | app/finders/todos_finder.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/todos_finder.rb b/app/finders/todos_finder.rb index 1a8f490355b..ff866c2faa5 100644 --- a/app/finders/todos_finder.rb +++ b/app/finders/todos_finder.rb @@ -37,7 +37,7 @@ class TodosFinder private def action_id? - action_id.present? && [Todo::ASSIGNED, Todo::MENTIONED, Todo::BUILD_FAILED, Todo::MARKED].include?(action_id.to_i) + action_id.present? && Todo::ACTION_NAMES.has_key?(action_id.to_i) end def action_id |