## Summary\n- Implements the ReviewPublicationResolutionWorkflow for Spec 386.\n- Adds resolution case/step persistence, policies, services, audit action IDs, and Filament integration.\n- Updates specs, UI/UX documentation, screenshots, and Pest coverage.\n\n## Tests\n- Not run during this handoff; branch was already clean and pushed.\n\n## Target\n- Base: platform-dev\n- Head/topic: 386-review-publication-resolution-workflow-v1 Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #457
16 lines
334 B
PHP
16 lines
334 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\ReviewPublicationResolution;
|
|
|
|
enum ReviewPublicationResolutionStepStatus: string
|
|
{
|
|
case Pending = 'pending';
|
|
case Actionable = 'actionable';
|
|
case Running = 'running';
|
|
case Failed = 'failed';
|
|
case Completed = 'completed';
|
|
case Superseded = 'superseded';
|
|
}
|