class Github::Client::Orgs::Projects

def list(*args)

Other tags:
    Api: - public

Other tags:
    See: List - your organization projects
def list(*args)
  arguments(args, required: [:org_name])
  params = arguments.params
  params["accept"] ||= PREVIEW_MEDIA
  response = get_request("/orgs/#{arguments.org_name}/projects", params)
  return response unless block_given?
  response.each { |el| yield el }
end