module Gitlab::Client::Issues

def reopen_issue(project, id)

Returns:
  • (Gitlab::ObjectifiedHash) - Information about reopened issue.

Parameters:
  • id (Integer) -- The ID of an issue.
  • project (Integer, String) -- The ID or name of a project.
def reopen_issue(project, id)
  put("/projects/#{url_encode project}/issues/#{id}", body: { state_event: 'reopen' })
end