Class: ActiveStorage::Attached::Changes::DeleteMany

Inherits:
Object
  • Object
show all
Defined in:
activestorage/lib/active_storage/attached/changes/delete_many.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, record) ⇒ DeleteMany

Returns a new instance of DeleteMany.



7
8
9
# File 'activestorage/lib/active_storage/attached/changes/delete_many.rb', line 7

def initialize(name, record)
  @name, @record = name, record
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name



5
6
7
# File 'activestorage/lib/active_storage/attached/changes/delete_many.rb', line 5

def name
  @name
end

#recordObject (readonly)

Returns the value of attribute record



5
6
7
# File 'activestorage/lib/active_storage/attached/changes/delete_many.rb', line 5

def record
  @record
end

Instance Method Details

#attachablesObject



11
12
13
# File 'activestorage/lib/active_storage/attached/changes/delete_many.rb', line 11

def attachables
  []
end

#attachmentsObject



15
16
17
# File 'activestorage/lib/active_storage/attached/changes/delete_many.rb', line 15

def attachments
  ActiveStorage::Attachment.none
end

#blobsObject



19
20
21
# File 'activestorage/lib/active_storage/attached/changes/delete_many.rb', line 19

def blobs
  ActiveStorage::Blob.none
end

#saveObject



23
24
25
# File 'activestorage/lib/active_storage/attached/changes/delete_many.rb', line 23

def save
  record.public_send("#{name}_attachments=", [])
end