1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 11:33:26 +00:00

[AC-1750] AC Team code ownership moves - Groups (#3358)

This commit is contained in:
Thomas Rittson
2023-10-20 06:37:46 +10:00
committed by GitHub
parent dd8ffa2cbc
commit c1cf07d764
72 changed files with 192 additions and 124 deletions

View File

@@ -2,7 +2,7 @@
namespace Bit.Infrastructure.EntityFramework.Models;
public class Group : Core.Entities.Group
public class Group : Core.AdminConsole.Entities.Group
{
public virtual Organization Organization { get; set; }
public virtual ICollection<GroupUser> GroupUsers { get; set; }
@@ -12,6 +12,6 @@ public class GroupMapperProfile : Profile
{
public GroupMapperProfile()
{
CreateMap<Core.Entities.Group, Group>().ReverseMap();
CreateMap<Core.AdminConsole.Entities.Group, Group>().ReverseMap();
}
}