mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 17:12:49 -05:00
[AC-1750] AC Team code ownership moves - Groups (#3358)
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace Bit.Infrastructure.EntityFramework.Models;
|
||||
|
||||
public class GroupUser : Core.Entities.GroupUser
|
||||
public class GroupUser : Core.AdminConsole.Entities.GroupUser
|
||||
{
|
||||
public virtual Group Group { get; set; }
|
||||
public virtual OrganizationUser OrganizationUser { get; set; }
|
||||
@ -12,7 +12,7 @@ public class GroupUserMapperProfile : Profile
|
||||
{
|
||||
public GroupUserMapperProfile()
|
||||
{
|
||||
CreateMap<Core.Entities.GroupUser, GroupUser>().ReverseMap();
|
||||
CreateMap<Core.AdminConsole.Entities.GroupUser, GroupUser>().ReverseMap();
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user