mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
16 lines
413 B
C#
16 lines
413 B
C#
using AutoFixture;
|
|
|
|
namespace Bit.Test.Common.AutoFixture;
|
|
|
|
public class GlobalSettings : ICustomization
|
|
{
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customize<Bit.Core.Settings.GlobalSettings>(composer => composer
|
|
.Without(s => s.BaseServiceUri)
|
|
.Without(s => s.Attachment)
|
|
.Without(s => s.Send)
|
|
.Without(s => s.DataProtection));
|
|
}
|
|
}
|