We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b91d230 + 2dbec86 commit 3339d19Copy full SHA for 3339d19
app/Console/Commands/LdapSync.php
@@ -317,9 +317,21 @@ public function handle()
317
if($ldap_map["jobtitle"] != null){
318
$user->jobtitle = $item['jobtitle'];
319
}
320
+ if($ldap_map["address"] != null){
321
+ $user->address = $item['address'];
322
+ }
323
+ if($ldap_map["city"] != null){
324
+ $user->city = $item['city'];
325
326
+ if($ldap_map["state"] != null){
327
+ $user->state = $item['state'];
328
329
if($ldap_map["country"] != null){
330
$user->country = $item['country'];
331
332
+ if($ldap_map["zip"] != null){
333
+ $user->zip = $item['zip'];
334
335
if($ldap_map["dept"] != null){
336
$user->department_id = $department->id;
337
0 commit comments