module Gitlab::Client::Issues

def issue(project, id)

Returns:
  • (Gitlab::ObjectifiedHash) -

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