mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
move to standard appsettings.json
This commit is contained in:
@ -18,8 +18,11 @@ namespace Bit.Billing
|
||||
{
|
||||
public Startup(IHostingEnvironment env)
|
||||
{
|
||||
var builder = new ConfigurationBuilder()
|
||||
.AddSettingsConfiguration(env, "bitwarden-Billing");
|
||||
var builder = new ConfigurationBuilder();
|
||||
if(env.IsDevelopment())
|
||||
{
|
||||
builder.AddUserSecrets("bitwarden-Billing");
|
||||
}
|
||||
Configuration = builder.Build();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user