BootstrapAdmin/Bootstrap.Admin/Controllers/ProfilesController.cs

23 lines
597 B
C#

using Bootstrap.DataAccess;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
namespace Bootstrap.Admin.Controllers
{
public class ProfilesController : ApiController
{
// POST api/<controller>
public bool Post([FromBody]JObject value)
{
//保存个性化设置
dynamic json = value;
return DictHelper.SaveProfiles((string)json.name, (string)json.code, (string)json.category);
}
}
}