20 lines
610 B
C#
20 lines
610 B
C#
using Nop.Core.Domain.Forums;
|
|
using Nop.Services.Caching;
|
|
|
|
namespace Nop.Services.Forums.Caching;
|
|
|
|
/// <summary>
|
|
/// Represents a forum group cache event consumer
|
|
/// </summary>
|
|
public partial class ForumGroupCacheEventConsumer : CacheEventConsumer<ForumGroup>
|
|
{
|
|
/// <summary>
|
|
/// Clear cache data
|
|
/// </summary>
|
|
/// <param name="entity">Entity</param>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
protected override async Task ClearCacheAsync(ForumGroup entity)
|
|
{
|
|
await RemoveAsync(NopForumDefaults.ForumByForumGroupCacheKey, entity);
|
|
}
|
|
} |