Sha256: 96a34c29f1690f75ad975c4e5d74c96e6f8f010a96c28f71e9221e682e20cc28
Contents?: true
Size: 470 Bytes
Versions: 12
Compression:
Stored size: 470 Bytes
Contents
module PlateApi::PlateObject class Section < Base has_one :post, "PlateApi::PlateObject::Post" has_one :site_translation, "PlateApi::PlateObject::SiteTranslation" has_many :rows, :row, "PlateApi::PlateObject::Row", true has_many :columns, :column, "PlateApi::PlateObject::Column" has_many :elements, :element, "PlateApi::PlateObject::Element" def self.api_name "sections" end def self.parent_class Post end end end
Version data entries
12 entries across 12 versions & 1 rubygems