- Monitoring chapters
- possibilities for ToolBarButton.html.twig to have tailwind classes see ChapterListToolbar.php
- Makefile scheduler command
- Makefile make:message command
This commit is contained in:
Jérémy Guillot
2024-07-20 19:40:48 +02:00
parent 7fc2f15f6b
commit ff59aa5d77
21 changed files with 818 additions and 283 deletions

View File

@@ -56,6 +56,9 @@ class Manga
#[ORM\Column(length: 255, nullable: true)]
private ?string $thumbnailUrl = null;
#[ORM\Column]
private ?bool $monitored = null;
public function __construct()
{
$this->chapters = new ArrayCollection();
@@ -250,4 +253,16 @@ class Manga
return $this;
}
public function isMonitored(): ?bool
{
return $this->monitored;
}
public function setMonitored(bool $monitored): static
{
$this->monitored = $monitored;
return $this;
}
}