class Github::Client::Repos::Collaborators

def list(*args)

Other tags:
    Api: - public

Returns:
  • (Array) -
def list(*args)
  arguments(args, required: [:user, :repo])
  params = arguments.params
  response = get_request("/repos/#{arguments.user}/#{arguments.repo}/collaborators", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end