Module: Tasker::Constants::WorkflowStepStatuses

Defined in:
lib/tasker/constants.rb

Overview

Status values for workflow steps

Constant Summary collapse

PENDING =

Step is waiting to be processed

'pending'
IN_PROGRESS =

Step is currently being processed

'in_progress'
ERROR =

Step encountered an error during processing

'error'
COMPLETE =

Step completed successfully

'complete'
RESOLVED_MANUALLY =

Step was manually marked as resolved

'resolved_manually'
CANCELLED =

Step was cancelled

'cancelled'