From 068c14ae51ba49462e1c4fc561c103a216caa9dd Mon Sep 17 00:00:00 2001 From: Rita Zerrizuela Date: Thu, 11 Mar 2021 20:12:17 -0300 Subject: [PATCH] Change Id to ClientId --- internal/cli/apps.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/cli/apps.go b/internal/cli/apps.go index fcdd0899b..e7f5ef9e6 100644 --- a/internal/cli/apps.go +++ b/internal/cli/apps.go @@ -84,7 +84,7 @@ auth0 apps show RunE: func(cmd *cobra.Command, args []string) error { if len(args) == 0 { if canPrompt(cmd) { - input := prompt.TextInput(appID, "Id:", "Id of the application.", true) + input := prompt.TextInput(appID, "Client Id:", "Id of the application.", true) if err := prompt.AskOne(input, &inputs); err != nil { return fmt.Errorf("An unexpected error occurred: %w", err) @@ -136,7 +136,7 @@ auth0 apps delete RunE: func(cmd *cobra.Command, args []string) error { if len(args) == 0 { if canPrompt(cmd) { - input := prompt.TextInput(appID, "Id:", "Id of the application.", true) + input := prompt.TextInput(appID, "Client Id:", "Id of the application.", true) if err := prompt.AskOne(input, &inputs); err != nil { return fmt.Errorf("An unexpected error occurred: %w", err) @@ -304,7 +304,7 @@ auth0 apps update --name myapp --type [native|spa|regular|m2m] RunE: func(cmd *cobra.Command, args []string) error { if len(args) == 0 { if canPrompt(cmd) { - input := prompt.TextInput(appID, "Id:", "Id of the application.", true) + input := prompt.TextInput(appID, "Client Id:", "Id of the application.", true) if err := prompt.AskOne(input, &inputs); err != nil { return fmt.Errorf("An unexpected error occurred: %w", err)