module Gitlab::Client::Issues

def participants_on_issue(project, id)

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