aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/stubs/user.rb
blob: a66b4f87d55920cd1ff243252842c0d4cf09139f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class User
  attr_reader :name

  def initialize(name)
    @name = name
  end

  def to_global_id
    GlobalID.new("User##{name}")
  end

  def to_gid_param
    to_global_id.to_param
  end
end