我已将 gem 'acts_as_tenant' 添加到我的 Rails 应用程序中。
我在应用程序控制器中设置了以下内容:
set_current_tenant_by_subdomain(:tenant, :subdomain)
我还在租户表中添加了信息列。例如,“关闭”状态的 statuscode_id。在请求模型中,我想使用该列来确定范围。
像这样的东西:
scope :closed, where(:statuscode_id => Tenant.find(current_tenant.id).request_closed)
但是,current_tenant
不起作用。
我可以使用什么来获取当前租户的 ID?
谢谢!