Skip to content

Commit

Permalink
Fix timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
jveski committed Jan 20, 2025
1 parent 5206606 commit 3454023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/profile-async/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func handleConwaySync(ctx context.Context, env *conf.Env, kc *keycloak.Keycloak[

out := map[string]any{
"email": user.Email,
"created": user.CreationTime,
"created": user.CreationTime / 1000,
"name": fmt.Sprintf("%s %s", user.First, user.Last),
"confirmed": true,
// "leadership": false, // remember to just set this manually
Expand Down

0 comments on commit 3454023

Please sign in to comment.