Added SaveValues to ConfigService

This commit is contained in:
Mark McDowall 2013-03-05 08:13:23 -08:00
parent 9bb383e2b8
commit 3dcf99753e
3 changed files with 20 additions and 0 deletions

View file

@ -32,6 +32,8 @@ namespace NzbDrone.Api.Settings
private Response SaveSettings()
{
var request = Request.Body.FromJson<Dictionary<string, object>>();
_configService.SaveValues(request);
return request.AsResponse();
}