1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 08:43:27 +00:00

Added SendGridApiHost to Globals (#5961)

* Added SendGridApiHost to Globals

* Added SendGridApiHost for test coverage
This commit is contained in:
Alexey Zilber
2025-06-17 21:35:38 +08:00
committed by GitHub
parent a529492d1d
commit 17507446a4
3 changed files with 4 additions and 2 deletions

View File

@@ -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
{