Idea
Currently this command "m365 aad user list" return only userprincipalname and display name, would be great if it could return same number properties as graph API does by default.
Additional Info
one suggestion:
from @Adam-it
we could just modify this
|
const properties: string[] = args.options.properties ? |
|
args.options.properties.split(',').map(p => p.trim()) : |
|
['userPrincipalName', 'displayName']; |
not to trim to ['userPrincipalName', 'displayName'];
Idea
Currently this command "m365 aad user list" return only userprincipalname and display name, would be great if it could return same number properties as graph API does by default.
Additional Info
one suggestion:
from @Adam-it
we could just modify this
cli-microsoft365/src/m365/aad/commands/user/user-list.ts
Lines 57 to 59 in f8f3553
not to trim to ['userPrincipalName', 'displayName'];