Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ USAGE:
scw iam user update-password <user-id ...> [arg=value ...]

ARGS:
user-id ID of the user to update
password The new password
[send-email] Whether or not to send an email alerting the user their password has changed
user-id ID of the user to update
password The new password

FLAGS:
-h, --help help for update-password
Expand Down
1 change: 0 additions & 1 deletion docs/commands/iam.md
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,6 @@ scw iam user update-password <user-id ...> [arg=value ...]
|------|---|-------------|
| user-id | Required | ID of the user to update |
| password | Required | The new password |
| send-email | | Whether or not to send an email alerting the user their password has changed |



Expand Down
7 changes: 0 additions & 7 deletions internal/namespaces/iam/v1alpha1/iam_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -737,13 +737,6 @@ func iamUserUpdatePassword() *core.Command {
Deprecated: false,
Positional: false,
},
{
Name: "send-email",
Short: `Whether or not to send an email alerting the user their password has changed`,
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args interface{}) (i interface{}, e error) {
request := args.(*iam.UpdateUserPasswordRequest)
Expand Down
Loading