ActionCable::Channel::Naming

module ActionCable::Channel::Naming

Public Instance Methods

channel_name() Show source

Returns the name of the channel, underscored, without the 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 14
def channel_name
  @channel_name ||= name.sub(/Channel$/, "").gsub("::", ":").underscore
end

© 2004–2017 David Heinemeier Hansson
Licensed under the MIT License.

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部