Sha256: 2d52778e3d18959f3573f21081329e7d178c1a944376968fbc1226a683842e6f
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
module Spree class Wishlist < Spree::Base include Spree::SingleStoreResource if defined?(Spree::Webhooks::HasWebhooks) include Spree::Webhooks::HasWebhooks end if Rails::VERSION::STRING >= '7.1.0' has_secure_token on: :save else has_secure_token end belongs_to :user, class_name: "::#{Spree.user_class}", touch: true belongs_to :store, class_name: 'Spree::Store' has_many :wished_items, class_name: 'Spree::WishedItem', dependent: :destroy after_commit :ensure_default_exists_and_is_unique validates :name, :store, :user, presence: true def include?(variant_id) wished_items.exists?(variant_id: variant_id) end def to_param token end def self.get_by_param(param) find_by(token: param) end private def ensure_default_exists_and_is_unique if is_default? Wishlist.where(is_default: true, user_id: user_id, store_id: store_id).where.not(id: id).update_all(is_default: false) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_core-4.8.3 | app/models/spree/wishlist.rb |
spree_core-4.8.2 | app/models/spree/wishlist.rb |