class CommentsController < ApplicationController
before_action :set_post
def create
@comment = @post.comments.build(comment_params)
class CommentsController < ApplicationController
before_action :set_post
def create
@comment = @post.comments.build(comment_params)