module Gitlab::Client::MergeRequests

def merge_request_participants(project, id)

Returns:
  • (Array) -

Parameters:
  • id (Integer) -- The ID of a merge request.
  • project (Integer, String) -- The ID or name of a project.
def merge_request_participants(project, id)
  get("/projects/#{url_encode project}/merge_requests/#{id}/participants")
end