class ArticlesController < ApplicationController
before_action :set_article, only: %i[edit update]
def new
@article = Article.new
end
class CommentsController < ApplicationController
before_action :set_post
def new
@comment = @post.comments.build
end