Skip to content

Commit

Permalink
Merge pull request #145 from auth0/fix/client-id
Browse files Browse the repository at this point in the history
Change Id to ClientId
  • Loading branch information
Widcket authored Mar 12, 2021
2 parents c95e71a + 068c14a commit 575654a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/cli/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ auth0 apps show <id>
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)
Expand Down Expand Up @@ -136,7 +136,7 @@ auth0 apps delete <id>
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)
Expand Down Expand Up @@ -304,7 +304,7 @@ auth0 apps update <id> --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)
Expand Down

0 comments on commit 575654a

Please sign in to comment.