From 34540238923da4b4cbad4eadb25380808edf3520 Mon Sep 17 00:00:00 2001 From: Jordan Olshevski Date: Sun, 19 Jan 2025 18:20:44 -0600 Subject: [PATCH] Fix timestamps --- cmd/profile-async/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/profile-async/main.go b/cmd/profile-async/main.go index ddd55f8..36052fc 100644 --- a/cmd/profile-async/main.go +++ b/cmd/profile-async/main.go @@ -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