class Github::Client::Repos::Projects

def list(*args)

Other tags:
    Api: - public

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