rossinkiwi
Results
2
comments of
rossinkiwi
I think I figured this out. Rails magic is [creating a polymorphic association](https://api.rubyonrails.org/classes/ActionText/Attribute.html#method-i-has_rich_text) behind the scenes. So, if in your model you declare ```` class Event < ApplicationRecord has_rich_text :description...
In my use case the ActionText content contains only styled text and for that case the solution I provided works well. However, the full ActionText implementation allows embedded attachments (images)...