We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb67c4c commit dec91bdCopy full SHA for dec91bd
cmd/admin_user_create.go
@@ -76,6 +76,10 @@ var microcmdUserCreate = &cli.Command{
76
Name: "restricted",
77
Usage: "Make a restricted user account",
78
},
79
+ &cli.StringFlag{
80
+ Name: "fullname",
81
+ Usage: `The full, human-readable name of the user`,
82
+ },
83
84
}
85
@@ -161,6 +165,7 @@ func runCreateUser(c *cli.Context) error {
161
165
IsAdmin: isAdmin,
162
166
MustChangePassword: mustChangePassword,
163
167
Visibility: visibility,
168
+ FullName: c.String("fullname"),
164
169
170
171
overwriteDefault := &user_model.CreateUserOverwriteOptions{
0 commit comments