From 6664a7c71e03e737a8262d03d95d8e6a09c398ed Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Mon, 16 Feb 2026 14:15:10 -0500 Subject: [PATCH] upd: user add home church rss field --- src/Entity/User.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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; + } }