Active Storage + Action Text (image upload) support
Is it possible to add images in comments ? I mean to say posting images with comments. I tried this http://stackoverflow.com/questions/31907023/images-in-comments-with-paperclip-and-commontator
user this one <%= image_tag(comment.creator.comment_image.url(:medium)) %> insted of <%= image_tag comment.comment_image.url(:medium) %>
The Rails sanitizer that Commontator uses is actually lenient enough that users can probably add <img> tags, though there's no way to upload them through Commontator. You could probably do something with ActiveStorage in the meantime.
Seems like the way to do this would be to add support for Active Storage + Rails 6 Action Text. I'll rename the issue.