Class: ActiveStorage::Attached::Changes::DetachOne

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, record, attachment) ⇒ DetachOne

Returns a new instance of DetachOne.



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

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

Instance Attribute Details

#attachmentObject (readonly)

Returns the value of attribute attachment



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

def attachment
  @attachment
end

#nameObject (readonly)

Returns the value of attribute name



5
6
7
# File 'activestorage/lib/active_storage/attached/changes/detach_one.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/detach_one.rb', line 5

def record
  @record
end

Instance Method Details

#detachObject



11
12
13
14
15
16
# File 'activestorage/lib/active_storage/attached/changes/detach_one.rb', line 11

def detach
  if attachment.present?
    attachment.delete
    reset
  end
end