Task: Hash user password before storing in session
This commit is contained in:
@@ -44,7 +44,7 @@ class ApiClient
|
||||
'satz' => ['@typ' => static::TYPE_CUSTOMER_DATA],
|
||||
'art' => 'Adressdaten',
|
||||
'email' => $email,
|
||||
'passwort' => md5($password),
|
||||
'passwort' => $password,
|
||||
],
|
||||
];
|
||||
|
||||
@@ -67,7 +67,7 @@ class ApiClient
|
||||
'satz' => ['@typ' => static::TYPE_CUSTOMER_DATA],
|
||||
'art' => 'Adressdaten_Ändern',
|
||||
'email' => $user->getEmail(),
|
||||
'passwort' => md5($password),
|
||||
'passwort' => $password,
|
||||
'idadresse' => $user->getBusProAddressId(),
|
||||
'adressdaten' => $teamer->toPayload(),
|
||||
],
|
||||
@@ -106,7 +106,7 @@ class ApiClient
|
||||
'satz' => ['@typ' => static::TYPE_CUSTOMER_DATA],
|
||||
'art' => 'SelektionCRM',
|
||||
'email' => $email,
|
||||
'passwort' => md5($password),
|
||||
'passwort' => $password,
|
||||
],
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user