fix(activeuser): reset structure bdd
Some checks reported warnings
Cadoles/nineskeletor/pipeline/head This commit is unstable
Some checks reported warnings
Cadoles/nineskeletor/pipeline/head This commit is unstable
This commit is contained in:
@ -71,6 +71,11 @@ class User implements UserInterface, LegacyPasswordAuthenticatedUserInterface
|
||||
*/
|
||||
private $salt;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="boolean")
|
||||
*/
|
||||
protected $isactive;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="string", length=128, unique=true)
|
||||
*/
|
||||
@ -655,4 +660,16 @@ class User implements UserInterface, LegacyPasswordAuthenticatedUserInterface
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isIsactive(): ?bool
|
||||
{
|
||||
return $this->isactive;
|
||||
}
|
||||
|
||||
public function setIsactive(bool $isactive): self
|
||||
{
|
||||
$this->isactive = $isactive;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user