module Knodes::Client::Schools

Public Instance Methods

school(options={}) click to toggle source
# File lib/knodes/client/schools.rb, line 4
def school(options={})
  response = get("schools/#{options[:school_id]}", options.merge(creds))
end
school_people(options={}) click to toggle source
# File lib/knodes/client/schools.rb, line 12
def school_people(options={})
  response = get("schools/#{options[:school_id]}/people", options.merge(creds))
end