Skip to content

Commit

Permalink
Fixing docs again
Browse files Browse the repository at this point in the history
  • Loading branch information
willvedd committed Dec 6, 2023
1 parent 6b78e74 commit 9dd7cac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/auth0_users_blocks_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ auth0 users blocks list [flags]
```
auth0 users blocks list <user-id|username|email|phone-number>
auth0 users blocks list <user-id|username|email|phone-number> --json
auth0 users blocks list "auth0|61b5b6e90783fa19f7c57dad
auth0 users blocks list "[email protected]
auth0 users blocks list "auth0|61b5b6e90783fa19f7c57dad"
auth0 users blocks list "[email protected]"
```


Expand Down
2 changes: 1 addition & 1 deletion docs/auth0_users_blocks_unblock.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ auth0 users blocks unblock [flags]

```
auth0 users blocks unblock <user-id1|username1|email1|phone-number1> <user-id2|username2|email2|phone-number2>
auth0 users blocks unblock "auth0|61b5b6e90783fa19f7c57dad
auth0 users blocks unblock "auth0|61b5b6e90783fa19f7c57dad"
auth0 users blocks unblock "[email protected]" "[email protected]"
```
Expand Down
6 changes: 3 additions & 3 deletions internal/cli/users_blocks.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ func listUserBlocksCmd(cli *cli) *cobra.Command {
Long: "List brute-force protection blocks for a given user by user ID, username, phone number or email.",
Example: ` auth0 users blocks list <user-id|username|email|phone-number>
auth0 users blocks list <user-id|username|email|phone-number> --json
auth0 users blocks list "auth0|61b5b6e90783fa19f7c57dad
auth0 users blocks list "[email protected]`,
auth0 users blocks list "auth0|61b5b6e90783fa19f7c57dad"
auth0 users blocks list "[email protected]"`,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) == 0 {
if err := userIdentifier.Ask(cmd, &inputs.userIdentifier); err != nil {
Expand Down Expand Up @@ -78,7 +78,7 @@ func deleteUserBlocksCmd(cli *cli) *cobra.Command {
Short: "Remove brute-force protection blocks for users",
Long: "Remove brute-force protection blocks for users by user ID, username, phone number or email.",
Example: ` auth0 users blocks unblock <user-id1|username1|email1|phone-number1> <user-id2|username2|email2|phone-number2>
auth0 users blocks unblock "auth0|61b5b6e90783fa19f7c57dad
auth0 users blocks unblock "auth0|61b5b6e90783fa19f7c57dad"
auth0 users blocks unblock "[email protected]" "[email protected]"
`,
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down

0 comments on commit 9dd7cac

Please sign in to comment.