从ActionCable访问控制器方法

时间:2017-05-05 11:26:51

标签: ruby-on-rails ruby actioncable

来自doc的示例代码:

# app/channels/web_notifications_channel.rb
class WebNotificationsChannel < ApplicationCable::Channel
  def subscribed
    stream_for current_user
  end
end

我在current_user中有方法ApplicationController。错误未定义的方法current_user id subscribed方法当然因为WebNotificationsChannel不是从ApplicationController派生的。什么医生的意思?或者我错过了什么?

0 个答案:

没有答案