mirror of
https://github.com/bitwarden/server.git
synced 2024-12-03 14:03:33 +01:00
20 lines
681 B
C#
20 lines
681 B
C#
|
using System.Collections.Generic;
|
||
|
using Bit.Core.Repositories.EntityFramework;
|
||
|
using Bit.Core.Settings;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.Extensions.Configuration;
|
||
|
|
||
|
namespace Bit.Test.Common.Helpers.Factories
|
||
|
{
|
||
|
public static class GlobalSettingsFactory
|
||
|
{
|
||
|
public static GlobalSettings GlobalSettings { get; } = new GlobalSettings();
|
||
|
static GlobalSettingsFactory()
|
||
|
{
|
||
|
var configBuilder = new ConfigurationBuilder().AddUserSecrets<Bit.Api.Startup>();
|
||
|
var Configuration = configBuilder.Build();
|
||
|
ConfigurationBinder.Bind(Configuration.GetSection("GlobalSettings"), GlobalSettings);
|
||
|
}
|
||
|
}
|
||
|
}
|