user gestion fully done
This commit is contained in:
@@ -41,6 +41,9 @@ class Participant implements UserInterface, PasswordAuthenticatedUserInterface
|
||||
#[ORM\Column]
|
||||
private ?bool $actif = null;
|
||||
|
||||
#[ORM\Column]
|
||||
private ?bool $pending = null;
|
||||
|
||||
#[ORM\Column]
|
||||
private array $roles = [];
|
||||
|
||||
@@ -82,6 +85,16 @@ class Participant implements UserInterface, PasswordAuthenticatedUserInterface
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getPending(): ?bool
|
||||
{
|
||||
return $this->pending;
|
||||
}
|
||||
|
||||
public function setPending(?bool $pending): void
|
||||
{
|
||||
$this->pending = $pending;
|
||||
}
|
||||
|
||||
public function getPseudo(): ?string
|
||||
{
|
||||
return $this->pseudo;
|
||||
|
||||
Reference in New Issue
Block a user