method
find_attachment
v8.0.0 -
Show latest stable
- Class:
ActiveStorage::Attached::Changes::CreateOneOfMany
find_attachment()private
No documentation available.
# File activestorage/lib/active_storage/attached/changes/create_one_of_many.rb, line 6
def find_attachment
if blob.persisted?
record.public_send("#{name}_attachments").detect { |attachment| attachment.blob_id == blob.id }
else
blob.attachments.find { |attachment| attachment.record == record }
end
end