gitlab-org--gitlab-foss/app/controllers/concerns/todos_actions.rb
2018-07-03 09:34:44 +02:00

12 lines
283 B
Ruby

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