如何创建默认的“访客”会话以便设计助手 current_user 将显示我的来宾用户?

发布于 2024-10-02 08:23:06 字数 204 浏览 4 评论 0原文

我希望我的网站的所有用户都有默认的“访客”会话。我正在使用设计。我的所有设计代码都适用于注册用户,但我也有“访客”用户的用户记录。

我想要做的就是自动让某人以该用户身份登录,这样在我的视图和其他地方,对 Devise 的 current_user 的调用就不会失败。

自九月底以来,我一直在努力寻找这个问题的答案。我什至无法在 Devise 邮件列表上得到回复。

I want all users to my site to have a default "Guest" session. I am using Devise. All of my devise code is working for signed up users, but I also have a user record for a "Guest" user.

All I want to do is automatically log someone in as that user, so that in my views and elsewhere, the call to Devise's current_user will not fail.

I have spent since the end of September trying to find an answer for this. I can't even get a reply on the Devise mailing list.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滿滿的愛 2024-10-09 08:23:06
def set_user
  if current_user.blank?
    user = User.where(:email => "guest@mycompany").first
    if user.blank?
      redirect_to new_user_registration_path
    else
      sign_in(user) # Why was this so hard to find out? I had to read all of the Devise code.
    end
  end
end
def set_user
  if current_user.blank?
    user = User.where(:email => "guest@mycompany").first
    if user.blank?
      redirect_to new_user_registration_path
    else
      sign_in(user) # Why was this so hard to find out? I had to read all of the Devise code.
    end
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文