mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
appid no longer served from api
This commit is contained in:
@ -4,7 +4,6 @@
|
||||
{
|
||||
public virtual string SiteName { get; set; }
|
||||
public virtual string BaseVaultUri { get; set; }
|
||||
public virtual string BaseApiUri { get; set; }
|
||||
public virtual string JwtSigningKey { get; set; }
|
||||
public virtual string StripeApiKey { get; set; }
|
||||
public virtual SqlServerSettings SqlServer { get; set; } = new SqlServerSettings();
|
||||
|
@ -122,8 +122,8 @@ namespace Bit.Core.Utilities
|
||||
|
||||
public static string U2fAppIdUrl(GlobalSettings globalSettings)
|
||||
{
|
||||
//return $"{globalSettings.BaseApiUri}app-id.json";
|
||||
return globalSettings.U2f.AppId;
|
||||
//return "https://localhost:4001/app-id.fidou2f";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -48,7 +48,7 @@ namespace Bit.Core.Utilities
|
||||
|
||||
public static void AddDefaultServices(this IServiceCollection services)
|
||||
{
|
||||
services.AddSingleton<IMailService, SendGridTemplateMailService>();
|
||||
services.AddSingleton<IMailService, RazorViewMailService>();
|
||||
services.AddSingleton<IMailDeliveryService, SendGridMailDeliveryService>();
|
||||
services.AddSingleton<IPushNotificationService, NotificationHubPushNotificationService>();
|
||||
services.AddSingleton<IBlockIpService, AzureQueueBlockIpService>();
|
||||
|
Reference in New Issue
Block a user