gestion synchro no mail

This commit is contained in:
afornerot 2021-01-21 17:17:23 +01:00
parent 1174b3db42
commit 4a57eb6a6c
1 changed files with 2 additions and 4 deletions

View File

@ -67,7 +67,6 @@ class SecurityController extends AbstractController
$attributes = \phpCAS::getAttributes();
// Init
$username = "";
$email = "";
$lastname = "";
$firstname = "";
@ -85,14 +84,13 @@ class SecurityController extends AbstractController
if(isset($attributes[$this->getParameter('casFirstname')]))
$firstname = $attributes[$this->getParameter('casFirstname')];
// Cas nomail
if(empty($email)) $email = $username."@nomail.com";
$user = $em->getRepository('App:User')->findOneBy(array("username"=>$username));
$exists = $user ? true : false;
if (!$exists) {
if(empty($email)) $email = $username."@nomail.com";
$user = new User();
$key = Uuid::uuid4();