Module: ActionCable::Channel::Naming::ClassMethods
Relationships & Source Files | |
Defined in: | actioncable/lib/action_cable/channel/naming.rb |
Instance Method Summary
-
#channel_name
Returns the name of the channel, underscored, without the
::ActionCable::Channel
ending.
Instance Method Details
#channel_name
Returns the name of the channel, underscored, without the ::ActionCable::Channel
ending. If the channel is in a namespace, then the namespaces are represented by single colon separators in the channel name.
ChatChannel.channel_name # => 'chat'
Chats::AppearancesChannel.channel_name # => 'chats:appearances'
FooChats::BarAppearancesChannel.channel_name # => 'foo_chats:bar_appearances'
# File 'actioncable/lib/action_cable/channel/naming.rb', line 16
def channel_name @channel_name ||= name.delete_suffix("Channel").gsub("::", ":").underscore end