Skip to content

Commit

Permalink
feat: link on import report
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineLemarchand committed Nov 5, 2024
1 parent 89c3080 commit 5b2a5ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion inc/config.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ private static function createOrUpdateUser($user, $fullImport = false) {
}
$userObject[$OidcMappings['group']] = $user['group'];
Oidc::addUserData($userObject, $ID);
$userObject['id'] = $ID;
return $userObject;
}
return NULL;
Expand Down Expand Up @@ -523,7 +524,7 @@ public function showConfigForm() {
</tr>
<?php foreach ($_SESSION['okta_imported_users'] as $user) { ?>
<tr>
<td><?php echo $user[$OidcMappings['name']] ?></td>
<td><a href="<?php echo User::getFormURLWithID($user['id']); ?>"><?php echo $user[$OidcMappings['name']] ?></a></td>
<td><?php echo $user[$OidcMappings['given_name']] . ' ' . $user[$OidcMappings['family_name']] ?></td>
<td><?php
foreach ($user[$OidcMappings['group']] as $group) {
Expand Down

0 comments on commit 5b2a5ee

Please sign in to comment.