I have two classes (Impressions and Replies) which inherit from the parent class Comment:
class CommentsController < ApplicationController
. . . .
end
class ImpressionsController < CommentsController
. . . .
end
class RepliesController < CommentsController
. . . .
end
In my view, I want them to render the same way. Right now, I'm approaching it like this:
<%= render @comment %>
Ideally, this would render the partial "/comments/_comment", but instead Rails want to render things like "/impressions/_impression" or "/replies/_replies." Is there any way to strong arm Rails into do "/comments/_comment"?