Feat: Refactor application rejecting process

This commit is contained in:
Björn Fromme
2023-10-19 10:24:53 +02:00
parent 2c49c142b8
commit 21968b833c
12 changed files with 185 additions and 66 deletions
@@ -6,9 +6,9 @@ use App\Entity\Application;
use App\Model\ApplicationCheckDto;
use Symfony\Contracts\EventDispatcher\Event;
class ApplicationRejectedEvent extends Event
class ApplicationStatusEvent extends Event
{
public const NAME = 'application.rejected';
public const NAME = 'application.status';
private Application $application;
private ?string $comment;