mirror of
https://github.com/bitwarden/server
synced 2025-12-22 11:13:27 +00:00
28 lines
686 B
C#
28 lines
686 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Api.Models.Public.Request;
|
|
|
|
public class GroupCreateUpdateRequestModel : GroupBaseModel
|
|
{
|
|
/// <summary>
|
|
/// The associated collections that this group can access.
|
|
/// </summary>
|
|
public IEnumerable<AssociationWithPermissionsRequestModel> Collections { get; set; }
|
|
|
|
public Group ToGroup(Guid orgId)
|
|
{
|
|
return ToGroup(new Group
|
|
{
|
|
OrganizationId = orgId
|
|
});
|
|
}
|
|
|
|
public Group ToGroup(Group existingGroup)
|
|
{
|
|
existingGroup.Name = Name;
|
|
existingGroup.AccessAll = AccessAll.Value;
|
|
existingGroup.ExternalId = ExternalId;
|
|
return existingGroup;
|
|
}
|
|
}
|