Method: LabClient::MergeRequests#participants
- Defined in:
- lib/labclient/merge_requests/participants.rb
#participants(project_id, merge_request_id) ⇒ Object
Show Specific
29 30 31 32 33 34 |
# File 'lib/labclient/merge_requests/participants.rb', line 29 def participants(project_id, merge_request_id) project_id = format_id(project_id) merge_request_id = format_id(merge_request_id) client.request(:get, "projects/#{project_id}/merge_requests/#{merge_request_id}/participants", User) end |