Skip to content

Commit

Permalink
Merge branch 'feature/DXCDT-313-view-assigned-roles' into feature/DXC…
Browse files Browse the repository at this point in the history
…DT-314-assign-roles
  • Loading branch information
willvedd authored Jan 13, 2023
2 parents 822a55a + ab6d57c commit 1f0afc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/cli/apis.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func showApiCmd(cli *cli) *cobra.Command {
return fmt.Errorf("Unable to get an API with Id '%s': %w", inputs.ID, err)
}

cli.renderer.ApiShow(api)
cli.renderer.ApiShow(api, cli.json)
return nil
},
}
Expand Down
4 changes: 2 additions & 2 deletions internal/display/apis.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ func (r *Renderer) ApiList(apis []*management.ResourceServer) {
r.Results(results)
}

func (r *Renderer) ApiShow(api *management.ResourceServer) {
func (r *Renderer) ApiShow(api *management.ResourceServer, jsonFlag bool) {
r.Heading("api")
view, scopesTruncated := makeApiView(api)
r.Result(view)
if scopesTruncated {
if scopesTruncated && !jsonFlag {
r.Newline()
r.Infof("Scopes truncated for display. To see the full list, run %s", ansi.Faint(fmt.Sprintf("apis scopes list %s", *api.ID)))
}
Expand Down

0 comments on commit 1f0afc8

Please sign in to comment.