我正在使用milia gem;
如何在不将其添加到每个控制器操作的情况下在所有视图中看到current_tenant.name
?
有点像在所有模型中看到设计current_user
答案 0 :(得分:1)
你可以这样做......
class ApplicationController < ActionController::Base
helper_method :current_tenant
def current_tenant
# Your tenant code here
end
end