Skip to content

Commit

Permalink
Move the quickstarts command below apis (#246)
Browse files Browse the repository at this point in the history
* Reorder commands

* Update Readme snippet
  • Loading branch information
Widcket authored Apr 9, 2021
1 parent fbd1a57 commit 780e2ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $ auth0 apps create
Callback URLs: http://localhost:3000
Allowed Logout URLs: http://localhost:3000

=== travel0 application created
=== travel0.auth0.com application created

CLIENT ID wmVzrZkGhKgglMRMvpauORCulBkQ5qeI
NAME My Awesome App
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ func appsCmd(cli *cli) *cobra.Command {
}

cmd.SetUsageTemplate(resourceUsageTemplate())
cmd.AddCommand(useAppCmd(cli))
cmd.AddCommand(listAppsCmd(cli))
cmd.AddCommand(createAppCmd(cli))
cmd.AddCommand(showAppCmd(cli))
cmd.AddCommand(updateAppCmd(cli))
cmd.AddCommand(deleteAppCmd(cli))
cmd.AddCommand(useAppCmd(cli))

return cmd
}
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ func Execute() {
rootCmd.AddCommand(tenantsCmd(cli))
rootCmd.AddCommand(appsCmd(cli))
rootCmd.AddCommand(rulesCmd(cli))
rootCmd.AddCommand(quickstartsCmd(cli))
rootCmd.AddCommand(apisCmd(cli))
rootCmd.AddCommand(quickstartsCmd(cli))
rootCmd.AddCommand(testCmd(cli))
rootCmd.AddCommand(logsCmd(cli))
rootCmd.AddCommand(logoutCmd(cli))
Expand Down

0 comments on commit 780e2ab

Please sign in to comment.