gpt4 book ai didi

ruby - Rails 5 使用 Devise 和 acts_as_tenant

转载 作者:行者123 更新时间:2023-12-05 07:20:41 26 4
gpt4 key购买 nike

我有一个使用 Devise 处理登录/注册的应用程序。我也在使用 acts_as_tenant。我需要确保每次有人去注册/登录时都设置一个租户。要作为租户工作,必须在身份验证之前设置租户。现在我在我的 ApplicationController 上使用 before_action 但问题是即使有人有无效的凭据等,该方法也会被调用,我试图避免在方法中编写 if 语句来确定我是否有有效的用户与否。

实现此目标的最佳方法是什么?有遇到类似情况的吗?

最佳答案

如果需要在Devise认证前设置租户,则需要使用acts_as_tenant的手动租户设置方法,这样可以控制时间。

# application_controller.rb

class ApplicationController < ActionController::Base
protect_from_forgery with: :exception

# tell acts_as_tenant you'll manually set the tenant
set_current_tenant_through_filter

# manually set the tenant before Devise auth
prepend_before_action :set_current_tenant_by_subdomain

# Devise auth as usual but after tenant is set
before_action :authenticate_user!


private

def set_current_tenant_by_subdomain
current_organization = Organization.find_by_subdomain(request.subdomain)
set_current_tenant(current_organization)
end
end

关于ruby - Rails 5 使用 Devise 和 acts_as_tenant,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57419511/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com