1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 19:53:40 +00:00

SCIM: Associate users to group on PUT/POST (#2139)

* associate users to group on PUT/POST

* fix logic
This commit is contained in:
Kyle Spearrin
2022-07-21 13:44:27 -04:00
committed by GitHub
parent 378b54524f
commit cf16be16c6
2 changed files with 40 additions and 0 deletions

View File

@@ -19,5 +19,13 @@ namespace Bit.Scim.Models
OrganizationId = organizationId
};
}
public List<GroupMembersModel> Members { get; set; }
public class GroupMembersModel
{
public string Value { get; set; }
public string Display { get; set; }
}
}
}