Class: SolidusBolt::Accounts::DetectAccountService
- Inherits:
-
BaseService
- Object
- BaseService
- SolidusBolt::Accounts::DetectAccountService
- Defined in:
- app/services/solidus_bolt/accounts/detect_account_service.rb
Instance Attribute Summary collapse
-
#email ⇒ Object
readonly
Returns the value of attribute email.
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(email:) ⇒ DetectAccountService
constructor
A new instance of DetectAccountService.
Methods inherited from BaseService
Constructor Details
#initialize(email:) ⇒ DetectAccountService
Returns a new instance of DetectAccountService.
8 9 10 11 |
# File 'app/services/solidus_bolt/accounts/detect_account_service.rb', line 8 def initialize(email:) @email = email super end |
Instance Attribute Details
#email ⇒ Object (readonly)
Returns the value of attribute email.
6 7 8 |
# File 'app/services/solidus_bolt/accounts/detect_account_service.rb', line 6 def email @email end |
Instance Method Details
#call ⇒ Object
13 14 15 |
# File 'app/services/solidus_bolt/accounts/detect_account_service.rb', line 13 def call detect_account end |