Skip to content

Commit

Permalink
fix: correction de User.php #579
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrousseau1 committed Jan 7, 2025
1 parent 546124b commit 703fb09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Security/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct(array $keycloakUserInfo = [], array $apiUserInfo = [
$this->userName = $keycloakUserInfo['preferred_username'];

$this->accountCreationDate = new \DateTime($apiUserInfo['creation']);
// $this->lastApiCallDate = new \DateTime($apiUserInfo['last_call']);
$this->lastApiCallDate = new \DateTime($apiUserInfo['last_call']);

if (array_key_exists('communities_member', $apiUserInfo)) {
$this->communitiesMember = $apiUserInfo['communities_member'];
Expand Down

0 comments on commit 703fb09

Please sign in to comment.