Skip to content

Commit

Permalink
Remove include totals
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Jan 25, 2021
1 parent 85ddb61 commit d2dfe84
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/cli/apis.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package cli

import (
"github.com/spf13/cobra"
"gopkg.in/auth0.v5/management"
)

func apisCmd(cli *cli) *cobra.Command {
Expand All @@ -27,7 +26,7 @@ Lists your existing APIs. To create one try:
$ auth0 apis create
`,
RunE: func(cmd *cobra.Command, args []string) error {
list, err := cli.api.ResourceServer.List(management.IncludeTotals(false))
list, err := cli.api.ResourceServer.List()

if err != nil {
return err
Expand Down

0 comments on commit d2dfe84

Please sign in to comment.