SessionsHelperで定義されているcurrent_userメソッドにアクセスしたいと考えています。ApplicationCable Connection クラスに含める、または要求するにはどうすればよいですか?
module ApplicationCable
class Connection < ActionCable::Connection::Base
identified_by :current_user
def connect
if current_user
self.current_user = current_user
logger.add_tags current_user.name
end
end
end
end
私にくれます
There was an exception - NoMethodError(undefined method `name' for nil:NilClass)
ApplicationController に相当します。channels/application_cable/connection.rb に SessionHelperを含めました。
module ApplicationCable
class Connection < ActionCable::Connection::Base
include SessionsHelper
identified_by :current_user
# (..)
end
end
しかし、うまくいきません。