mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
f04c3b8e54
* Remove Group.AccessAll from code * Add shadow property config and migration
19 lines
459 B
C#
19 lines
459 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Bit.Core.AdminConsole.Entities;
|
|
|
|
namespace Bit.Infrastructure.EFIntegration.Test.AdminConsole.Repositories.EqualityComparers;
|
|
|
|
public class GroupCompare : IEqualityComparer<Group>
|
|
{
|
|
public bool Equals(Group x, Group y)
|
|
{
|
|
return x.Name == y.Name &&
|
|
x.ExternalId == y.ExternalId;
|
|
}
|
|
|
|
public int GetHashCode([DisallowNull] Group obj)
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
}
|