mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
Delete is faster than destroy but should only be used if the object has no callbacks or touches.
20 lines
390 B
Ruby
20 lines
390 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Checks the validity of a soft-delete call.
|
|
class VariantDeleter
|
|
def delete(variant)
|
|
if only_variant_on_product?(variant)
|
|
variant.errors.add :product, I18n.t(:spree_variant_product_error)
|
|
return false
|
|
end
|
|
|
|
variant.destroy
|
|
end
|
|
|
|
private
|
|
|
|
def only_variant_on_product?(variant)
|
|
variant.product.variants == [variant]
|
|
end
|
|
end
|