summaryrefslogtreecommitdiff
path: root/lib/api/v3/todos.rb
blob: e3b311d61cdbca094fce07dc453e52d249fb7bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module API
  module V3
    class Todos < Grape::API
      before { authenticate! }

      resource :todos do
        desc 'Mark a todo as done' do
          success ::API::Entities::Todo
        end
        params do
          requires :id, type: Integer, desc: 'The ID of the todo being marked as done'
        end
        delete ':id' do
          todo = current_user.todos.find(params[:id])
          TodoService.new.mark_todos_as_done([todo], current_user)

          present todo.reload, with: ::API::Entities::Todo, current_user: current_user
        end

        desc 'Mark all todos as done'
        delete do
          status(200)

          todos = TodosFinder.new(current_user, params).execute
          TodoService.new.mark_todos_as_done(todos, current_user).size
        end
      end
    end
  end
end