class CryptIdent::SignOut
Sign-out logic for `CryptIdent`, per Issue #9.
This class *is not* part of the published API. @private
Public Instance Methods
call(current_user:)
click to toggle source
This method exists, despite YAGNI, to provide for future expansion of features like analytics. More importantly, it provides an API congruent with that of the (reworked) `#sign_up` and `#sign_in` methods.
# File lib/crypt_ident/sign_out.rb, line 89 def call(current_user:) _ = current_user # presently ignored Success() end