Add trash status to Workflow

[MAILPOET-4417]
This commit is contained in:
David Remer
2022-08-10 13:04:01 +03:00
committed by Veljko V
parent dce1b1403c
commit 9a74dec86a
2 changed files with 8 additions and 1 deletions

View File

@ -9,6 +9,13 @@ class Workflow {
public const STATUS_ACTIVE = 'active';
public const STATUS_INACTIVE = 'inactive';
public const STATUS_DRAFT = 'draft';
public const STATUS_TRASH = 'trash';
public const STATUS_ALL = [
self::STATUS_ACTIVE,
self::STATUS_INACTIVE,
self::STATUS_DRAFT,
self::STATUS_TRASH,
];
/** @var int */
private $id;