module Gitlab::Client::Todos

def mark_todo_as_done(id)

Returns:
  • (Gitlab::ObjectifiedHash) -

Parameters:
  • id (Integer) -- The ID of the todo.
def mark_todo_as_done(id)
  post("/todos/#{id}/mark_as_done")
end