Skip to content

Commit

Permalink
Remove access to specific DateTimes
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett committed Jul 18, 2021
1 parent 320df28 commit 3483e18
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/libraries/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -614,13 +614,12 @@ public function jsonSerialize()
];

return [
'avatar_url' => $this->getAvatarURI(null),
'created_datetime' => $created_datetime,
'id' => $this->getId(),
'name' => $this->getName(),
'timezone' => $this->getTimezone(),
'url' => $this->getURI(),
'verified_datetime' => $verified_datetime,
'avatar_url' => $this->getAvatarURI(null),
'id' => $this->getId(),
'member_for' => $this->getCreatedEstimate(),
'name' => $this->getName(),
'timezone' => $this->getTimezone(),
'url' => $this->getURI(),
];
}

Expand Down

0 comments on commit 3483e18

Please sign in to comment.