module Gitlab::Client::Issues

def reset_time_estimate_of_issue(project, id)

Parameters:
  • id (Integer) -- The ID of an issue.
  • project (Integer, String) -- The ID or name of a project.
def reset_time_estimate_of_issue(project, id)
  post("/projects/#{url_encode project}/issues/#{id}/reset_time_estimate")
end