From 0dae19bd4f254dc1039b060ecabe444652cef9fe Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 23 Mar 2017 22:30:56 -0400 Subject: [PATCH] remove old loggr refs --- src/Api/settings.json | 4 ---- src/Core/GlobalSettings.cs | 7 ------- 2 files changed, 11 deletions(-) diff --git a/src/Api/settings.json b/src/Api/settings.json index a07b0b4db6..c988704017 100644 --- a/src/Api/settings.json +++ b/src/Api/settings.json @@ -10,10 +10,6 @@ "apiKey": "SECRET", "replyToEmail": "hello@bitwarden.com" }, - "loggr": { - "logKey": "SECRET", - "apiKey": "SECRET" - }, "push": { "apnsCertificateThumbprint": "SECRET", "apnsCertificatePassword": "SECRET", diff --git a/src/Core/GlobalSettings.cs b/src/Core/GlobalSettings.cs index a2404d6a0d..1b3e79b661 100644 --- a/src/Core/GlobalSettings.cs +++ b/src/Core/GlobalSettings.cs @@ -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; }