Flowdock
method

subscribe_to_channel

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: Base
subscribe_to_channel() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actioncable/lib/action_cable/channel/base.rb, line 234
        def subscribe_to_channel
          run_callbacks :subscribe do
            subscribed
          end

          if subscription_rejected?
            reject_subscription
          else
            transmit_subscription_confirmation unless defer_subscription_confirmation?
          end
        end
Register or log in to add new notes.