aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/stubs/room.rb
blob: 1664b07d128c89dc43babd8b6da5e8a363f98cf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Room
  attr_reader :id, :name

  def initialize(id, name = "Campfire")
    @id = id
    @name = name
  end

  def to_global_id
    GlobalID.new("Room##{id}-#{name}")
  end

  def to_gid_param
    to_global_id.to_param
  end
end