upd: user
add home church rss field
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user