mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
83e68bce06
* enable default appsettings for self hosted installs * change setters to use arrow functions * fix tests * fix global settings ref
17 lines
450 B
C#
17 lines
450 B
C#
using AutoFixture;
|
|
|
|
namespace Bit.Core.Test.AutoFixture
|
|
{
|
|
internal class GlobalSettings : ICustomization
|
|
{
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customize<Settings.GlobalSettings>(composer => composer
|
|
.Without(s => s.BaseServiceUri)
|
|
.Without(s => s.Attachment)
|
|
.Without(s => s.Send)
|
|
.Without(s => s.DataProtection));
|
|
}
|
|
}
|
|
}
|