method
action_signature
v8.0.0 -
Show latest stable
- Class:
ActionCable::Channel::Base
action_signature(action, data)private
No documentation available.
# File actioncable/lib/action_cable/channel/base.rb, line 292
def action_signature(action, data)
(+"#{self.class.name}##{action}").tap do |signature|
arguments = data.except("action")
if arguments.any?
arguments = parameter_filter.filter(arguments)
signature << "(#{arguments.inspect})"
end
end
end