mirror of
https://github.com/bitwarden/mobile
synced 2025-12-20 18:23:51 +00:00
[SG-516] Additional forwarded email providers for username generator - mobile (#2304)
* [SG-516] Added DuckDuckGo provider * [SG-516] Add Fastmail as generator provider * [SG-516] code clean up * [SG-516] Default to service empty if first time on screen. Order services by alphabetic order. * [SG-516] Removed unnecessary prop. * [PS-2278] Fixed inverted eye bug. * [SG-516] Add icon glyph converter * [SG-516] Fixed enum default value and ordering
This commit is contained in:
@@ -4,7 +4,10 @@ namespace Bit.Core.Models.Domain
|
||||
{
|
||||
public class UsernameGenerationOptions
|
||||
{
|
||||
public UsernameGenerationOptions() { }
|
||||
public UsernameGenerationOptions()
|
||||
{
|
||||
ServiceType = ForwardedEmailServiceType.None;
|
||||
}
|
||||
|
||||
public UsernameType Type { get; set; }
|
||||
public ForwardedEmailServiceType ServiceType { get; set; }
|
||||
@@ -16,6 +19,8 @@ namespace Bit.Core.Models.Domain
|
||||
public string CatchAllEmailDomain { get; set; }
|
||||
public string FirefoxRelayApiAccessToken { get; set; }
|
||||
public string SimpleLoginApiKey { get; set; }
|
||||
public string DuckDuckGoApiKey { get; set; }
|
||||
public string FastMailApiKey { get; set; }
|
||||
public string AnonAddyApiAccessToken { get; set; }
|
||||
public string AnonAddyDomainName { get; set; }
|
||||
public string EmailWebsite { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user