system/config is now editable

This commit is contained in:
kay.one 2011-05-08 21:23:57 -07:00
parent cb4d0e2450
commit 24c47801b3
2 changed files with 51 additions and 4 deletions

View file

@ -6,6 +6,7 @@ using System.Web.Mvc;
using NzbDrone.Core.Providers;
using NzbDrone.Core.Providers.Core;
using NzbDrone.Core.Providers.Jobs;
using Telerik.Web.Mvc;
namespace NzbDrone.Web.Controllers
{
@ -39,5 +40,27 @@ namespace NzbDrone.Web.Controllers
}
[GridAction]
public ActionResult _SelectAjaxEditing()
{
return View(new GridModel(_configProvider.All()));
}
[AcceptVerbs(HttpVerbs.Post)]
[GridAction]
public ActionResult _SaveAjaxEditing(string key, string value)
{
_configProvider.SetValue(key, value);
return View(new GridModel(_configProvider.All()));
}
[AcceptVerbs(HttpVerbs.Post)]
[GridAction]
public ActionResult _InsertAjaxEditing(string key, string value)
{
_configProvider.SetValue(key, value);
return View(new GridModel(_configProvider.All()));
}
}
}