Skip to content

Commit

Permalink
Merge pull request #229 from overmindtech/undeprecate-name
Browse files Browse the repository at this point in the history
Remove deprecation notice on *name*
  • Loading branch information
dylanratcliffe authored Jun 24, 2024
2 parents b9773ca + 2671434 commit f45d2d8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions auth0support.proto
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,13 @@ message Auth0CreateUserRequest {
string user_id = 1;
// The user's email address
string email = 2;
// The user's full name
string name = 3 [deprecated=true];

// The user's full name. This will be split and stored as first_name and
// last_name internally. It is provided for convenience since some social
// providers do not provide first_name and last_name fields. If `first_name`
// and `last_name` are provided, this field will be ignored.
string name = 3;

// Whether the user's email address has been verified
bool email_verified = 4;
// The user's first name
Expand Down

0 comments on commit f45d2d8

Please sign in to comment.