1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 02:03:46 +00:00

Duo WebSDK Token Provider

This commit is contained in:
Kyle Spearrin
2017-06-21 00:04:25 -04:00
parent 4d6d3c97a3
commit 7095ae0ea1
5 changed files with 83 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
public virtual DocumentDbSettings DocumentDb { get; set; } = new DocumentDbSettings();
public virtual NotificationHubSettings NotificationHub { get; set; } = new NotificationHubSettings();
public virtual YubicoSettings Yubico { get; set; } = new YubicoSettings();
public virtual DuoSettings Duo { get; set; } = new DuoSettings();
public class SqlServerSettings
{
@@ -85,5 +86,10 @@
public string ClientId { get; set; }
public string Key { get; set; }
}
public class DuoSettings
{
public string AKey { get; set; }
}
}
}