我最近将 Brakeman gem 添加到我的 Gemfile 中,并且必须看到,我应该使用
:only_path => true
使其更安全。但我正在使用嵌套资源并且不知道具体如何,这是我的控制器中的部分。
if @comment.update_attributes(params[:comment])
redirect_to [@message, @comment], notice: 'Comment was successfully updated.'
我该怎么做,我只看到了 url_for 助手的 only_path 属性。感谢您的帮助!