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:
Diffstat (limited to 'app/models/work_items/widgets/current_user_todos.rb')
-rw-r--r--app/models/work_items/widgets/current_user_todos.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/models/work_items/widgets/current_user_todos.rb b/app/models/work_items/widgets/current_user_todos.rb
index 61c4fcb453b..64297b433dd 100644
--- a/app/models/work_items/widgets/current_user_todos.rb
+++ b/app/models/work_items/widgets/current_user_todos.rb
@@ -3,6 +3,19 @@
module WorkItems
module Widgets
class CurrentUserTodos < Base
+ def self.quick_action_commands
+ [:todo, :done]
+ end
+
+ def self.quick_action_params
+ [:todo_event]
+ end
+
+ def self.process_quick_action_param(param_name, value)
+ return super unless param_name == :todo_event
+
+ { action: value == 'done' ? 'mark_as_done' : 'add' }
+ end
end
end
end