我是一名新的 Rails 开发人员,我有一个 Rails 应用程序,我允许用户在其中发布帖子,同时允许他们选择选中复选框。我希望能够手动查看用户在发布过程中检查的所有帖子。现在,所有内容都已成功发布,但我希望对所有选中的帖子都进行此审核。进行此审查的最简单和最简单的方法是什么?
这是后控制器现在的样子
def create
@post = current_user.posts.build(params[:post])
if @post.save
flash[:success] = "Shared!"
redirect_to root_path
else
@feed_items = []
render 'static_pages/home'
end
end