class Octokit::Organization

GitHub organization class to generate API path urls

Public Class Methods

path(org) click to toggle source

Get the api path for an organization

@param org [String, Integer] GitHub organization login or id @return [String] Organization Api path

# File lib/octokit/organization.rb, line 8
def self.path org
  case org
  when String
    "orgs/#{org}"
  when Integer
    "organizations/#{org}"
  end
end