1
0
mirror of https://github.com/bitwarden/server synced 2025-12-21 18:53:41 +00:00

ses mail delivery service

This commit is contained in:
Kyle Spearrin
2019-03-13 14:07:08 -04:00
parent 6421e326b9
commit 8d54442173
3 changed files with 133 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ namespace Bit.Core
public virtual DuoSettings Duo { get; set; } = new DuoSettings();
public virtual BraintreeSettings Braintree { get; set; } = new BraintreeSettings();
public virtual BitPaySettings BitPay { get; set; } = new BitPaySettings();
public virtual AmazonSettings Amazon { get; set; } = new AmazonSettings();
public class BaseServiceUriSettings
{
@@ -200,5 +201,12 @@ namespace Bit.Core
public string Key { get; set; }
public string IdentityUri { get; set; }
}
public class AmazonSettings
{
public string AccessKeyId { get; set; }
public string AccessKeySecret { get; set; }
public string Region { get; set; }
}
}
}