instance method
to_rich_text_attributes
Ruby on Rails 6.0.6
Since v6.0.6Signature
to_rich_text_attributes(attributes = {})
No documentation comment.
Parameters
-
attributesopt = {}
Source
# File actiontext/lib/action_text/attachable.rb, line 74
def to_rich_text_attributes(attributes = {})
attributes.dup.tap do |attrs|
attrs[:sgid] = attachable_sgid
attrs[:content_type] = attachable_content_type
attrs[:previewable] = true if previewable_attachable?
attrs[:filename] = attachable_filename
attrs[:filesize] = attachable_filesize
attrs[:width] = attachable_metadata[:width]
attrs[:height] = attachable_metadata[:height]
end.compact
end
Defined in actiontext/lib/action_text/attachable.rb line 74
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionText::Attachable