Methods
N
T
Included Modules
Attributes
[R] name
[RW] password_digest
Class Public methods
new(name)
# File actioncable/test/stubs/user.rb, line 4
def initialize(name)
  @name = name
end
Instance Public methods
to_gid_param()
# File actioncable/test/stubs/user.rb, line 12
def to_gid_param
  to_global_id.to_param
end
to_global_id()
# File actioncable/test/stubs/user.rb, line 8
def to_global_id
  GlobalID.new("User##{name}")
end