diff --git a/src/Entity/User.php b/src/Entity/User.php index ec74ed1..728378e 100644 --- a/src/Entity/User.php +++ b/src/Entity/User.php @@ -71,6 +71,9 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface, JsonSer #[ORM\Column(nullable: true)] private ?array $metaData = null; + #[ORM\Column(length: 255, nullable: true)] + private ?string $homeChurchRSS = null; + public function __construct() { $this->series = new ArrayCollection(); @@ -323,4 +326,16 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface, JsonSer return $this; } + + public function getHomeChurchRSS(): ?string + { + return $this->homeChurchRSS; + } + + public function setHomeChurchRSS(?string $homeChurchRSS): static + { + $this->homeChurchRSS = $homeChurchRSS; + + return $this; + } }