* Run code cleanup * Start manual run * Finish dotnet format + manual cleanup * Fix up after merge * Fix substrings changed to [..] Co-authored-by: Nikolaj Geisle <niko737@edu.ucl.dk> Co-authored-by: Zeegaan <nge@umbraco.dk>
14 lines
358 B
C#
14 lines
358 B
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
namespace Umbraco.Cms.Web.BackOffice.Authorization;
|
|
|
|
/// <summary>
|
|
/// An authorization requirement for <see cref="ContentPermissionsResourceHandler" />
|
|
/// </summary>
|
|
public class ContentPermissionsResourceRequirement : IAuthorizationRequirement
|
|
{
|
|
}
|