summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/todos_actions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/concerns/todos_actions.rb')
-rw-r--r--app/controllers/concerns/todos_actions.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/controllers/concerns/todos_actions.rb b/app/controllers/concerns/todos_actions.rb
deleted file mode 100644
index c0acdb3498d..00000000000
--- a/app/controllers/concerns/todos_actions.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-module TodosActions
- extend ActiveSupport::Concern
-
- def create
- todo = TodoService.new.mark_todo(issuable, current_user)
-
- render json: {
- count: TodosFinder.new(current_user, state: :pending).execute.count,
- delete_path: dashboard_todo_path(todo)
- }
- end
-end