1
DRYに従ってコントローラのコードを改善したい。コントローラのDRY
def create
blog.user = current_user
blog.save
respond_with blog, location: user_root_path
end
def update
blog.update(blog_params)
respond_with blog, location: user_root_path
end
def destroy
blog.destroy
respond_with blog, location: user_root_path
end
すべてのメソッドにはrespond_with blog、location:user_root_pathがあります。どうすればそれを隠すことができますか?