This commit is contained in:
Kukks
2018-12-31 12:34:27 +01:00
parent 3dc250f801
commit 2245027ca3
8 changed files with 67 additions and 61 deletions

View File

@@ -36,7 +36,6 @@ namespace BTCPayServer.Controllers
public bool SoundsEnabled { get; set; }
public string DisqusShortname { get; set; }
public bool AnimationsEnabled { get; set; }
public string DisqusAPIKey { get; set; }
}
@@ -68,7 +67,6 @@ namespace BTCPayServer.Controllers
SoundsEnabled = settings.SoundsEnabled,
DisqusShortname = settings.DisqusShortname,
AnimationsEnabled = settings.AnimationsEnabled,
DisqusAPIKey = settings.DisqusAPIKey,
};
return View(vm);
}
@@ -116,7 +114,6 @@ namespace BTCPayServer.Controllers
SoundsEnabled = vm.SoundsEnabled,
DisqusShortname = vm.DisqusShortname,
AnimationsEnabled = vm.AnimationsEnabled,
DisqusAPIKey = vm.DisqusAPIKey,
});
await UpdateAppSettings(app);
_EventAggregator.Publish(new CrowdfundAppUpdated()