using Bootstrap.DataAccess; using Longbow.Caching.Configuration; using Newtonsoft.Json.Linq; using System.Collections.Generic; using System.Linq; using System.Web.Http; namespace Bootstrap.Admin.Controllers { /// /// /// public class ProfilesController : ApiController { /// /// /// /// /// [HttpPost] public bool Post([FromBody]JObject value) { //保存个性化设置 dynamic json = value; return DictHelper.SaveProfiles((string)json.name, (string)json.code, (string)json.category); } /// /// /// /// [HttpGet] public IEnumerable Get([FromUri]JObject value) { var section = CacheListSection.GetSection(); return section.Items.Where(item => item.Enabled); } } }