Skip to content

Commit

Permalink
feat: add account creation time to authinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
its-felix committed Oct 6, 2024
1 parent f73389d commit 66af20a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions web/authinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ func AuthInfoEndpoint() echo.HandlerFunc {
return c.JSON(http.StatusOK, map[string]string{
"sessionId": session.Id,
"sessionCreationTime": session.CreationTime.Format(time.RFC3339),
"accountCreationTime": session.AccountCreationTime.Format(time.RFC3339),
"issuer": session.Issuer,
"idAtIssuer": session.IdAtIssuer,
})
Expand Down

0 comments on commit 66af20a

Please sign in to comment.