1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00

Revert "Added fido2 registration to other services"

This reverts part of commit 8f64f4a99f.
This commit is contained in:
Chad Scharf 2021-05-04 23:49:22 -04:00
parent fc146d27ce
commit f0baf7e6a4
2 changed files with 0 additions and 18 deletions

View File

@ -46,15 +46,6 @@ namespace Bit.Portal
services.AddScoped<ICurrentContext, CurrentContext>((serviceProvider) =>
serviceProvider.GetService<EnterprisePortalCurrentContext>());
// Fido2
services.AddFido2(options =>
{
options.ServerDomain = new Uri(globalSettings.BaseServiceUri.Vault).Host;
options.ServerName = "Bitwarden";
options.Origin = globalSettings.BaseServiceUri.Vault;
options.TimestampDriftTolerance = 300000;
});
// Identity
services.AddEnterprisePortalTokenIdentityServices();
if (globalSettings.SelfHosted)

View File

@ -43,15 +43,6 @@ namespace Bit.Sso
// Context
services.AddScoped<ICurrentContext, CurrentContext>();
// Fido2
services.AddFido2(options =>
{
options.ServerDomain = new Uri(globalSettings.BaseServiceUri.Vault).Host;
options.ServerName = "Bitwarden";
options.Origin = globalSettings.BaseServiceUri.Vault;
options.TimestampDriftTolerance = 300000;
});
// Mvc
services.AddControllersWithViews();