implement torrent posters feature #18

This commit is contained in:
ghost 2023-10-30 04:44:44 +02:00
parent 8ae1b3f0b7
commit bd5191e894
16 changed files with 944 additions and 43 deletions

View file

@ -25,9 +25,6 @@ class TorrentPoster
#[ORM\Column]
private ?bool $approved = null;
#[ORM\Column(length: 255)]
private ?string $color = null;
#[ORM\Column(length: 32)]
private ?string $md5file = null;
@ -91,18 +88,6 @@ class TorrentPoster
return $this;
}
public function getColor(): ?string
{
return $this->color;
}
public function setColor(string $color): static
{
$this->color = $color;
return $this;
}
public function getMd5file(): ?string
{
return $this->md5file;