Class: CommandTower::Workflows::Auth::EmailVerification::VerifyWorkflow
- Inherits:
-
CommandTower::Workflows::ApplicationWorkflow
- Object
- CommandTower::Workflows::ApplicationWorkflow
- CommandTower::Workflows::Auth::EmailVerification::VerifyWorkflow
- Defined in:
- app/workflows/command_tower/workflows/auth/email_verification/verify_workflow.rb
Constant Summary
Constants inherited from CommandTower::Workflows::ApplicationWorkflow
CommandTower::Workflows::ApplicationWorkflow::ALLOWED_RETRY_STRATEGIES, CommandTower::Workflows::ApplicationWorkflow::InvalidTransactionResult, CommandTower::Workflows::ApplicationWorkflow::TransactionFailure
Instance Method Summary collapse
Methods inherited from CommandTower::Workflows::ApplicationWorkflow
call, call_from_job, continuation_max_attempts, declared_retry_strategy, mark_impersonation_activity!, retry_strategy, validate_retry_strategy!
Methods included from Impersonation::ActivityDeclaration
Methods included from Logging::LifecycleDeclaration
Methods included from Execution::ContextAccess
#audit, #execution_context, #log_debug, #log_error, #log_info, #log_warn, #publish_event
Methods included from Transactional
#fail_transaction!, #transaction
Instance Method Details
#call(current_user:, input:) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'app/workflows/command_tower/workflows/auth/email_verification/verify_workflow.rb', line 10 def call(current_user:, input:) verify_result = CommandTower::Services::Auth::EmailVerification::Verify.call( user: current_user, code: input.code ) unless verify_result.success? return failure( errors: verify_result.errors, http_status: IdentityErrorStatus.http_status_for(verify_result.errors.first) ) end = verify_result.data[:message] success( payload: CommandTower::Serializers::Auth::EmailVerification::MessageResponseSerializer.serialize( message: ), http_status: .include?("already verified") ? :ok : :created ) end |