Files
Umbraco-CMS/src/Umbraco.Web/Cache/UserGroupPermissionsCacheRefresher.cs

32 lines
900 B
C#
Raw Normal View History

2017-09-08 19:39:13 +02:00
using System;
using System.ComponentModel;
using Umbraco.Core.Cache;
namespace Umbraco.Web.Cache
{
[Obsolete("This is no longer used and will be removed from the codebase in the future")]
[EditorBrowsable(EditorBrowsableState.Never)]
public sealed class UserGroupPermissionsCacheRefresher : CacheRefresherBase<UserGroupPermissionsCacheRefresher>
{
2019-01-17 08:34:29 +01:00
public UserGroupPermissionsCacheRefresher(AppCaches appCaches)
: base(appCaches)
2017-09-08 19:39:13 +02:00
{ }
#region Define
protected override UserGroupPermissionsCacheRefresher This => this;
public static readonly Guid UniqueId = Guid.Parse("840AB9C5-5C0B-48DB-A77E-29FE4B80CD3A");
public override Guid RefresherUniqueId => UniqueId;
public override string Name => "User Group Permissions Cache Refresher";
#endregion
#region Refresher
#endregion
}
2017-09-23 10:08:18 +02:00
}