Skip to content

Enhancement: Extend teams team list to show all the properties returned from the API #4378

@arjunumenon

Description

@arjunumenon

Currently when you execute teams team list, it just shows only limited properties even if you return the output in JSON. Following are the outputs returned as per the code

  • ID
  • displayName
  • isArchived
  • description

Refer the code here,

request
.get(requestOptions)
.then((res: any): void => {
resolve({
id: group.id as string,
displayName: group.displayName as string,
isArchived: res.isArchived,
description: group.description as string
});

What I am proposing is to

  1. Return all the properties returned (Currently the API return teams property).
  2. Add the currently showing properties to the default properties.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions