From 5af1606ff8f6b8fbc0420d101df04b3cbce19d6e Mon Sep 17 00:00:00 2001 From: David Schmitt Date: Tue, 3 Oct 2023 16:05:35 +0200 Subject: [PATCH] Also capture the user's full name from Auth0 --- auth0support.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/auth0support.proto b/auth0support.proto index d3ce2ea..044e602 100644 --- a/auth0support.proto +++ b/auth0support.proto @@ -35,6 +35,7 @@ service Auth0Support { message Auth0CreateUserRequest { string user_id = 1; string email = 2; + string name = 3; } message Auth0CreateUserResponse { string org_id = 1;