mirror of
https://github.com/bitwarden/server
synced 2025-12-10 21:33:41 +00:00
Added SendGridApiHost to Globals (#5961)
* Added SendGridApiHost to Globals * Added SendGridApiHost for test coverage
This commit is contained in:
@@ -21,7 +21,7 @@ public class SendGridMailDeliveryService : IMailDeliveryService, IDisposable
|
||||
GlobalSettings globalSettings,
|
||||
IWebHostEnvironment hostingEnvironment,
|
||||
ILogger<SendGridMailDeliveryService> logger)
|
||||
: this(new SendGridClient(globalSettings.Mail.SendGridApiKey),
|
||||
: this(new SendGridClient(globalSettings.Mail.SendGridApiKey, globalSettings.Mail.SendGridApiHost),
|
||||
globalSettings, hostingEnvironment, logger)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -431,6 +431,7 @@ public class GlobalSettings : IGlobalSettings
|
||||
public SmtpSettings Smtp { get; set; } = new SmtpSettings();
|
||||
public string SendGridApiKey { get; set; }
|
||||
public int? SendGridPercentage { get; set; }
|
||||
public string SendGridApiHost { get; set; } = "https://api.sendgrid.com";
|
||||
|
||||
public class SmtpSettings
|
||||
{
|
||||
|
||||
@@ -25,7 +25,8 @@ public class SendGridMailDeliveryServiceTests : IDisposable
|
||||
{
|
||||
Mail =
|
||||
{
|
||||
SendGridApiKey = "SendGridApiKey"
|
||||
SendGridApiKey = "SendGridApiKey",
|
||||
SendGridApiHost = "https://api.sendgrid.com"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user