Sha256: 9be2ea105036a75f0be4ab227179483fde84c768b37ed3bb45b105a48285016a
Contents?: true
Size: 1.11 KB
Versions: 13
Compression:
Stored size: 1.11 KB
Contents
module Spree module V2 module Storefront class TaxonSerializer < BaseSerializer set_type :taxon attributes :name, :pretty_name, :permalink, :seo_title, :description, :meta_title, :meta_description, :meta_keywords, :left, :right, :position, :depth, :updated_at, :public_metadata attribute :is_root do |taxon| taxon.root? end attribute :is_child do |taxon| taxon.child? end attribute :is_leaf do |taxon| taxon.leaf? end belongs_to :parent, record_type: :taxon, serializer: :taxon belongs_to :taxonomy, record_type: :taxonomy has_many :children, record_type: :taxon, serializer: :taxon has_many :products, record_type: :product, if: proc { |_taxon, params| params && params[:include_products] == true } has_one :image, object_method_name: :icon, id_method_name: :icon_id, record_type: :taxon_image, serializer: :taxon_image end end end end
Version data entries
13 entries across 13 versions & 3 rubygems