The idea is to have what you've seen a million times before, a "post a new comment" form with the following fields (for visitors who are not logged in): Name, Email, Website, and Message
Note the "message" field belongs to the Comment model, and the other 3 belong to the User model. Since the User model is Devise validatable, I'd like to be able to use those validations (as well as those for the comment field) in this hybrid form.
Is this possible? Can I add accepts_nested_attributes_for(:user) to the Comment model, even though the Comment is the child of User?
Thanks!