class Github::Client::Orgs::Hooks

def list(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/orgs/hooks/#list-hooks -
def list(*args)
  arguments(args, required: [:org_name])
  response = get_request("/orgs/#{arguments.org_name}/hooks", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end