使用 authlogic 时变得昏迷
我开始使用 comatose 来处理我网站上的内容,但在使用通用 Authlogic 配置的现有身份验证中使用它时遇到问题。
在自述文件中,他提供了一个使用 Restful 身份验证进行配置的示例,我想知道如何在常规 Authlogic 设置中执行相同的操作?
#environment.rb
Comatose.configure do |config|
# Includes AuthenticationSystem in the ComatoseController
config.includes << :authenticated_system
end
I started using comatose to handle content on my site but am having problems using it with my existing authentication using a generic Authlogic config.
In the readme he sites an example for configuring it with Restful Authentication and I'm wondering how I would do the same within a general Authlogic setup?
#environment.rb
Comatose.configure do |config|
# Includes AuthenticationSystem in the ComatoseController
config.includes << :authenticated_system
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为更好的方法是将身份验证方法移到一个模块中,并包含来自 ApplicationController 和 comatose 的方法。示例:
将您的身份验证方法放入 user_sessions_helper 中:
然后将该模块包含在您的 ApplicationController 中:
最后也在昏迷配置中(environment.rb):
I think a better way to do it is moving the auth methods out into a module, and include that from both ApplicationController and comatose. Example:
Put your auth methods into user_sessions_helper:
Then include the module in your ApplicationController:
And finally in the comatose config as well (environment.rb):