Rails アプリに gem 'acts_as_tenant' を追加しました。
アプリケーションコントローラーで次のように設定しました。
set_current_tenant_by_subdomain(:tenant, :subdomain)
また、Tenants テーブルに情報の列を追加しました。たとえば、「closed」ステータスの statuscode_id です。Request モデルでは、その列を使用してスコープを設定したいと考えています。
このようなもの:
scope :closed, where(:statuscode_id => Tenant.find(current_tenant.id).request_closed)
しかし、機能しcurrent_tenant
ていません。
現在のテナントの ID を取得するには、何を使用できますか?
ありがとう!