This commit is contained in:
Bjarke Berg
2024-02-01 09:58:42 +01:00
parent 5b102e3b8e
commit ac02e97e0c
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ namespace Umbraco.Cms.Web.BackOffice.Filters;
/// Validates the incoming <see cref="ContentItemSave" /> model along with if the user is allowed to perform the
/// operation
/// </summary>
internal sealed class ContentSaveValidationAttribute : TypeFilterAttribute
public sealed class ContentSaveValidationAttribute : TypeFilterAttribute
{
public ContentSaveValidationAttribute(bool skipUserAccessValidation = false)
: base(typeof(ContentSaveValidationFilter))

View File

@@ -7,7 +7,7 @@ using Umbraco.Cms.Core.Services;
namespace Umbraco.Cms.Web.BackOffice.ModelBinders;
internal class BlueprintItemBinder : ContentItemBinder
public class BlueprintItemBinder : ContentItemBinder
{
private readonly IContentService _contentService;

View File

@@ -13,7 +13,7 @@ namespace Umbraco.Cms.Web.BackOffice.ModelBinders;
/// <summary>
/// The model binder for <see cref="T:Umbraco.Web.Models.ContentEditing.ContentItemSave" />
/// </summary>
internal class ContentItemBinder : IModelBinder
public class ContentItemBinder : IModelBinder
{
private readonly IContentService _contentService;
private readonly IContentTypeService _contentTypeService;