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