rails milia current_tenant在控制器中的使用

时间:2016-05-25 11:19:15

标签: ruby-on-rails

我正在使用milia gem; 如何在不将其添加到每个控制器操作的情况下在所有视图中看到current_tenant.name

有点像在所有模型中看到设计current_user

1 个答案:

答案 0 :(得分:1)

你可以这样做......

class ApplicationController < ActionController::Base
  helper_method :current_tenant

  def current_tenant
   # Your tenant code here
  end
end