Add create, update and delete (move to recycle bin) operations for Document

This commit is contained in:
kjac
2023-02-20 11:08:22 +01:00
parent e12fbdf5b7
commit 361db0ed3c
39 changed files with 868 additions and 19 deletions

View File

@@ -1,4 +1,5 @@
using Microsoft.AspNetCore.Mvc;
using Umbraco.Cms.Api.Management.Content;
using Umbraco.Cms.Api.Management.Routing;
using Umbraco.Cms.Core;
@@ -8,6 +9,6 @@ namespace Umbraco.Cms.Api.Management.Controllers.Document;
[ApiController]
[VersionedApiBackOfficeRoute(Constants.UdiEntityType.Document)]
[ApiExplorerSettings(GroupName = nameof(Constants.UdiEntityType.Document))]
public abstract class DocumentControllerBase : ManagementApiControllerBase
public abstract class DocumentControllerBase : ContentControllerBase
{
}