module Gitlab::Client::Issues

def move_issue(project, id, options = {})

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

Options Hash: (**options)
  • :to_project_id (String) -- The ID of the new project.

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