-
Notifications
You must be signed in to change notification settings - Fork 881
feat: add "Full Name" field to user creation #13659
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Adds the ability to specify "Full Name" (a.k.a. Name) when creating users either via CLI or UI.
2e68b76
to
0ec27e9
Compare
@@ -20,6 +21,8 @@ export const Language = { | |||
emailLabel: "Email", | |||
passwordLabel: "Password", | |||
usernameLabel: "Username", | |||
nameLabel: "Full name", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: I would use "Name" instead of "Full name".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, I would much prefer to use "full name" in the UI/CLI to distinguish it from "username". The API refers to it as name
however.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️ for adding e2e tests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks good and it is tested 🙏
Part of #13490
Continued from #13491
Adds the ability to specify "Full Name" (a.k.a. Name) when creating users either via CLI or UI.