1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 16:53:23 +00:00
This commit is contained in:
Hinton
2025-10-10 10:39:14 -07:00
parent a7340c905b
commit fac2804f02

View File

@@ -17,7 +17,7 @@ var globalSettings = builder.Services.AddGlobalSettingsServices(builder.Configur
builder.Services.AddCustomDataProtectionServices(builder.Environment, globalSettings); builder.Services.AddCustomDataProtectionServices(builder.Environment, globalSettings);
// Repositories // Repositories
builder.Services.AddDatabaseRepositories(globalSettings); builder.Services.AddDatabaseRepositories(globalSettings, true);
// Identity Services // Identity Services
builder.Services.AddScoped<Microsoft.AspNetCore.Identity.IPasswordHasher<Bit.Core.Entities.User>, Microsoft.AspNetCore.Identity.PasswordHasher<Bit.Core.Entities.User>>(); builder.Services.AddScoped<Microsoft.AspNetCore.Identity.IPasswordHasher<Bit.Core.Entities.User>, Microsoft.AspNetCore.Identity.PasswordHasher<Bit.Core.Entities.User>>();