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:
authorStan Hu <stanhu@gmail.com>2017-04-29 15:29:59 +0300
committerStan Hu <stanhu@gmail.com>2017-04-29 15:29:59 +0300
commit303504df4788fead8ab200dd5490658489ba5385 (patch)
tree1b913d761b84fe3251e216713c67e640967d1522 /lib/api/todos.rb
parent3717d21db1b17b2e18e6843d41a2c23d006918e9 (diff)
Revert "Merge branch 'tc-no-todo-service-select' into 'master'"
This reverts merge request !10845
Diffstat (limited to 'lib/api/todos.rb')
-rw-r--r--lib/api/todos.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/todos.rb b/lib/api/todos.rb
index 10aa64947fe..d1f7e364029 100644
--- a/lib/api/todos.rb
+++ b/lib/api/todos.rb
@@ -59,10 +59,10 @@ module API
requires :id, type: Integer, desc: 'The ID of the todo being marked as done'
end
post ':id/mark_as_done' do
- TodoService.new.mark_todos_as_done_by_ids(params[:id], current_user)
todo = current_user.todos.find(params[:id])
+ TodoService.new.mark_todos_as_done([todo], current_user)
- present todo, with: ::API::Entities::Todo, current_user: current_user
+ present todo.reload, with: Entities::Todo, current_user: current_user
end
desc 'Mark all todos as done'