1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 16:23:31 +00:00

added identity server real cert loading

This commit is contained in:
Kyle Spearrin
2017-01-12 18:35:26 -05:00
parent f105bd775d
commit 6cde9ed223
5 changed files with 35 additions and 24 deletions

View File

@@ -10,6 +10,7 @@
public virtual LoggrSettings Loggr { get; set; } = new LoggrSettings();
public virtual PushSettings Push { get; set; } = new PushSettings();
public virtual StorageSettings Storage { get; set; } = new StorageSettings();
public virtual IdentityServerSettings IdentityServer { get; set; } = new IdentityServerSettings();
public class SqlServerSettings
{
@@ -41,5 +42,10 @@
public string GcmApiKey { get; set; }
public string GcmAppPackageName { get; set; }
}
public class IdentityServerSettings
{
public string CertificateThumbprint { get; set; }
}
}
}