How to correctly set up a polymorphic association with nested attributes in Rails 7?
👀 Views: 2
💬 Answers: 1
📅 Created: 2025-06-03
ruby-on-rails active-record polymorphic-associations
I'm working on a Rails 7 application where I need to set up a polymorphic association for comments, allowing comments to belong to either a Post or an Image mod...