1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-24 17:17:40 +01:00

remove old loggr refs

This commit is contained in:
Kyle Spearrin 2017-03-23 22:30:56 -04:00
parent ca9aa40873
commit 0dae19bd4f
2 changed files with 0 additions and 11 deletions

View File

@ -10,10 +10,6 @@
"apiKey": "SECRET",
"replyToEmail": "hello@bitwarden.com"
},
"loggr": {
"logKey": "SECRET",
"apiKey": "SECRET"
},
"push": {
"apnsCertificateThumbprint": "SECRET",
"apnsCertificatePassword": "SECRET",

View File

@ -7,7 +7,6 @@
public virtual string JwtSigningKey { get; set; }
public virtual SqlServerSettings SqlServer { get; set; } = new SqlServerSettings();
public virtual MailSettings Mail { get; set; } = new MailSettings();
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();
@ -30,12 +29,6 @@
public string ReplyToEmail { get; set; }
}
public class LoggrSettings
{
public string LogKey { get; set; }
public string ApiKey { get; set; }
}
public class PushSettings
{
public string ApnsCertificateThumbprint { get; set; }