blob: 6cbd1158dc25ee26e416d2cd8b11af5e5d2b9f05 (
plain) (
tree)
|
|
# frozen_string_literal: true
module ActiveStorage
class Attached::Changes::DeleteMany #:nodoc:
attr_reader :name, :record
def initialize(name, record)
@name, @record = name, record
end
def attachments
ActiveStorage::Attachment.none
end
def blobs
ActiveStorage::Blob.none
end
def save
record.public_send("#{name}_attachments=", [])
end
end
end
|