RejectTask records one rejection decision for a manual-approval task that is currently awaiting a decision and reconciles the resulting task status.
(ctx context.Context, id string, actor ActorContext)
| 663 | // RejectTask records one rejection decision for a manual-approval task that is |
| 664 | // currently awaiting a decision and reconciles the resulting task status. |
| 665 | func (m *Service) RejectTask(ctx context.Context, id string, actor ActorContext) (*Task, error) { |
| 666 | return m.transitionTaskApproval(ctx, id, ApprovalStateRejected, taskEventRejected, actor) |
| 667 | } |
| 668 | |
| 669 | func (m *Service) executeTaskBoundary( |
| 670 | ctx context.Context, |
nothing calls this directly
no test coverage detected