Class: Booth::Core::Onboardings::Find
- Inherits:
-
Object
- Object
- Booth::Core::Onboardings::Find
- Includes:
- Logging, Calls
- Defined in:
- lib/booth/core/onboardings/find.rb
Instance Method Summary collapse
Instance Method Details
#call ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/booth/core/onboardings/find.rb', line 15 def call do_check_domain_syntax .on_success { do_check_scope_syntax } .on_success { do_check_secret_key_syntax } .on_success { do_find_onboarding } .on_success { do_compare_domain } .on_success { do_compare_scope } .on_success { do_check_consummation } .on_success { do_check_blockage } .on_success { do_check_timeout } .on_success { do_return_result } end |