From 5f011f632b0252cdcc8ec283f0ce81e6bc655c7f Mon Sep 17 00:00:00 2001 From: Kevin Frantz Date: Thu, 13 Sep 2018 14:42:39 +0200 Subject: [PATCH] Implemented autogeneration of user --- application/src/Entity/User.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/src/Entity/User.php b/application/src/Entity/User.php index f23d1b4..26ec560 100644 --- a/application/src/Entity/User.php +++ b/application/src/Entity/User.php @@ -41,5 +41,6 @@ class User extends BaseUser implements SourceAttributInterface parent::__construct(); $this->isActive = true; $this->source = new UserSource(); + $this->source->setUser($this); } }