aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/stubs/user.rb
blob: 7894d1d9ae5664b6a081b482363d3136d8c4316f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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