Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc;
using Nop.Core;
using Nop.Services.Common;
namespace Nop.Web.Areas.Admin.Controllers;
public partial class PreferencesController : BaseAdminController
{
#region Fields
protected readonly IGenericAttributeService _genericAttributeService;
protected readonly IWorkContext _workContext;
#endregion
#region Ctor
public PreferencesController(IGenericAttributeService genericAttributeService,
IWorkContext workContext)
{
_genericAttributeService = genericAttributeService;
_workContext = workContext;
}
#endregion
#region Methods
[HttpPost]
public virtual async Task SavePreference(string name, bool value)
{
//permission validation is not required here
ArgumentException.ThrowIfNullOrEmpty(name);
await _genericAttributeService.SaveAttributeAsync(await _workContext.GetCurrentCustomerAsync(), name, value);
return Json(new
{
Result = true
});
}
#endregion
}