0

我正在使用 rails 4 和舒适的墨西哥沙发。我希望通过密码保护来保护一些 cms 页面。他们不需要非常安全。以下代码给了我一个未定义的方法错误:

module CmsPagesAuth

  def authenticate
    http_basic_authenticate_with name: "dhh", password: "secret"
  end
end

该方法是 ActionController::HttpAuthentication::Basic 的一部分 如何访问相关方法?还是有更好的方法来解决这个问题?提前感谢您提供任何建议、解决方案或见解。

4

1 回答 1

0
class StaticController < ApplicationController
   http_basic_authenticate_with name: "dhh", password: "secret", only: [your static actions]
end
于 2013-10-24T21:50:07.290 回答