mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
22bd755b3c
* Remove OrganizationUser.AccessAll from code * Add shadow property * Remove remaining reference * dotnet format * Fix tests * Bump migration dates
22 lines
608 B
C#
22 lines
608 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Infrastructure.EFIntegration.Test.Repositories.EqualityComparers;
|
|
|
|
public class OrganizationUserCompare : IEqualityComparer<OrganizationUser>
|
|
{
|
|
public bool Equals(OrganizationUser x, OrganizationUser y)
|
|
{
|
|
return x.Email == y.Email &&
|
|
x.Status == y.Status &&
|
|
x.Type == y.Type &&
|
|
x.ExternalId == y.ExternalId &&
|
|
x.Permissions == y.Permissions;
|
|
}
|
|
|
|
public int GetHashCode([DisallowNull] OrganizationUser obj)
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
}
|