소스 검색

[backend] Création utilisateur : liaison établissement si l'utilisateur existe

dev
Guillaume 4 년 전
부모
커밋
38a2fa9273
1개의 변경된 파일8개의 추가작업 그리고 3개의 파일을 삭제
  1. +8
    -3
      backend/controllers/UserController.php

+ 8
- 3
backend/controllers/UserController.php 파일 보기

@@ -155,9 +155,14 @@ class UserController extends BackendController
{
$model = new User();

$userExist = User::searchOne([
'email' => Yii::$app->request->post('email')
]);
$userExist = false ;
$posts = Yii::$app->request->post() ;

if($posts) {
$userExist = User::searchOne([
'email' => $posts['User']['email']
]);
}

if ($userExist) {
Producer::addUser($userExist->id, GlobalParam::getCurrentProducerId()) ;

Loading…
취소
저장