class SecondStep::MemoryAdapter::ApplicationUser
Attributes
application_user_link[RW]
phone[RW]
uuid[RW]
Public Class Methods
new(application_user_link: nil, phone: nil, uuid: nil)
click to toggle source
# File lib/second_step/memory_adapter/application_user.rb, line 10 def initialize(application_user_link: nil, phone: nil, uuid: nil) self.application_user_link = application_user_link self.phone = phone self.uuid = uuid end
Public Instance Methods
application_user_link=(link)
click to toggle source
# File lib/second_step/memory_adapter/application_user.rb, line 16 def application_user_link=(link) @application_user_link = link link.change_application_user self if link end
change_link(link)
click to toggle source
# File lib/second_step/memory_adapter/application_user.rb, line 21 def change_link(link) @application_user_link = link end