mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
* Fixed missing oauth tables during setup. * Fixed missing manager_id and department_id
This commit is contained in:
parent
465b69516d
commit
a975117eaf
|
@ -324,8 +324,8 @@ abstract class Importer
|
||||||
$user->last_name = $user_array['last_name'];
|
$user->last_name = $user_array['last_name'];
|
||||||
$user->username = $user_array['username'];
|
$user->username = $user_array['username'];
|
||||||
$user->email = $user_array['email'];
|
$user->email = $user_array['email'];
|
||||||
$user->manager_id = $user_array['manager_id'];
|
$user->manager_id = $user_array['manager_id'] ?? null;
|
||||||
$user->department_id = $user_array['department_id'];
|
$user->department_id = $user_array['department_id'] ?? null;
|
||||||
$user->activated = 1;
|
$user->activated = 1;
|
||||||
$user->password = $this->tempPassword;
|
$user->password = $this->tempPassword;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue