Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

NopNewsDefaults.cs

using Nop.Core.Caching;

namespace Nop.Services.News;

/// <summary>
/// Represents default values related to orders services
/// </summary>
public static partial class NopNewsDefaults
{
    #region Caching defaults

    /// <summary>
    /// Key for number of news comments
    /// </summary>
    /// <remarks>
    /// {0} : news item ID
    /// {1} : store ID
    /// {2} : are only approved comments?
    /// </remarks>
    public static CacheKey NewsCommentsNumberCacheKey => new("Nop.newsitem.comments.number.{0}-{1}-{2}");

    /// <summary>
    /// Gets a key pattern to clear cache
    /// </summary>
    /// <remarks>
    /// {0} : news item ID
    /// </remarks>
    public static string NewsCommentsNumberPrefix => "Nop.newsitem.comments.number.{0}";

    #endregion
}