Flowdock
method

connection_gid

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: Identification
connection_gid(ids) 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/connection/identification.rb, line 35
        def connection_gid(ids)
          ids.map do |o|
            if o.respond_to? :to_gid_param
              o.to_gid_param
            else
              o.to_s
            end
          end.sort.join(":")
        end
Register or log in to add new notes.