21 lines
730 B
C#
21 lines
730 B
C#
using Nop.Core.Domain.Security;
|
|
using Nop.Services.Caching;
|
|
|
|
namespace Nop.Services.Security.Caching;
|
|
|
|
/// <summary>
|
|
/// Represents a ACL record cache event consumer
|
|
/// </summary>
|
|
public partial class AclRecordCacheEventConsumer : CacheEventConsumer<AclRecord>
|
|
{
|
|
/// <summary>
|
|
/// Clear cache data
|
|
/// </summary>
|
|
/// <param name="entity">Entity</param>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
protected override async Task ClearCacheAsync(AclRecord entity)
|
|
{
|
|
await RemoveAsync(NopSecurityDefaults.AclRecordCacheKey, entity.EntityId, entity.EntityName);
|
|
await RemoveAsync(NopSecurityDefaults.EntityAclRecordExistsCacheKey, entity.EntityName);
|
|
}
|
|
} |