1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-02 00:23:14 +00:00

handle group changes more appropriately

This commit is contained in:
Kyle Spearrin
2017-05-17 00:01:03 -04:00
parent f3ff7e0e73
commit 19a02b3732
6 changed files with 162 additions and 95 deletions

View File

@@ -702,7 +702,7 @@ namespace Bit.Console
foreach(var group in result.Groups)
{
Con.WriteLine(" {0} - {1}", group.Name, group.ExternalId);
foreach(var user in group.Users)
foreach(var user in group.UserMemberExternalIds)
{
Con.WriteLine(" {0}", user);
}