feat: update my watchlist page

This commit is contained in:
Maël Gangloff
2024-07-27 20:44:10 +02:00
parent 7d88003dfb
commit e2913a9c9f
7 changed files with 85 additions and 46 deletions

View File

@@ -13,7 +13,7 @@ class WatchListTrigger
{
#[ORM\Id]
#[ORM\Column(length: 255)]
#[Groups(['watchlist:item', 'watchlist:create', 'watchlist:update'])]
#[Groups(['watchlist:list', 'watchlist:item', 'watchlist:create', 'watchlist:update'])]
private ?string $event = null;
#[ORM\Id]
@@ -23,7 +23,7 @@ class WatchListTrigger
#[ORM\Id]
#[ORM\Column(enumType: TriggerAction::class)]
#[Groups(['watchlist:item', 'watchlist:create', 'watchlist:update'])]
#[Groups(['watchlist:list', 'watchlist:item', 'watchlist:create', 'watchlist:update'])]
private ?TriggerAction $action = null;
public function getEvent(): ?string