Sha256: cd765d179f211120156341b055a55071923e1ec891398fc71ee70957743deb95
Contents?: true
Size: 311 Bytes
Versions: 96
Compression:
Stored size: 311 Bytes
Contents
# frozen_string_literal: true module Spree class ZoneMember < Spree::Base belongs_to :zone, class_name: 'Spree::Zone', counter_cache: true, inverse_of: :zone_members, optional: true belongs_to :zoneable, polymorphic: true, optional: true delegate :name, to: :zoneable, allow_nil: true end end
Version data entries
96 entries across 96 versions & 1 rubygems