platehub/plate_api

View on GitHub
lib/plate_api/plate_object/company.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PlateApi::PlateObject
  class Company < Base

    has_one :partner, "PlateApi::PlateObject::Partner"
    has_many :sites, :site, "PlateApi::PlateObject::Site"

    def self.api_name
      "companies"
    end

    def self.parent_class
      Partner
    end
  end
end