私は私のapplication_controller.rbで次のようにしています。&&ステートメント以外のRuby
def layout
unless request.subdomain.empty? && current_user.nil?
self.class.layout 'admin'
end
end
上のコードは動作していないようです。しかし、私が次のことをすると、うまくいきます。
def layout
unless request.subdomain.empty?
unless current_user.nil?
self.class.layout 'admin'
end
end
end
私は1つのステートメントを削除してコードを簡素化したいと思います。どうすればいい?
あなたはThe Manです。いい答え... – jaydel