aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/lib
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2019-07-07 22:03:06 -0400
committerGeorge Claghorn <george@basecamp.com>2019-07-07 22:03:06 -0400
commit930402101c09726ee9d9855cb303f2a8e7d7ab6c (patch)
tree4ebef2d1a6b4b460c7e46032ba773c5909448a46 /actiontext/lib
parent7d699dad334996838dd529e4b75e1648692d56f8 (diff)
downloadrails-930402101c09726ee9d9855cb303f2a8e7d7ab6c.tar.gz
rails-930402101c09726ee9d9855cb303f2a8e7d7ab6c.tar.bz2
rails-930402101c09726ee9d9855cb303f2a8e7d7ab6c.zip
Implement ActiveStorage::Blob#attachable_plain_text_representation
Fixes that file attachments without captions would not be represented in plain text generated from rich-text content, causing ActionText::RichText#present? to return false. Closes #36607.
Diffstat (limited to 'actiontext/lib')
-rw-r--r--actiontext/lib/action_text/engine.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actiontext/lib/action_text/engine.rb b/actiontext/lib/action_text/engine.rb
index 0c2aebfd08..0f55d460a1 100644
--- a/actiontext/lib/action_text/engine.rb
+++ b/actiontext/lib/action_text/engine.rb
@@ -25,6 +25,10 @@ module ActionText
def previewable_attachable?
representable?
end
+
+ def attachable_plain_text_representation(caption = nil)
+ "[#{caption || filename}]"
+ end
end
end