@ -21,10 +21,6 @@ using Squidex.Web;
namespace Squidex.Areas.Api.Controllers.Contents
{
/// <summary>
/// Updates and retrieves contents.
/// </summary>
[ApiExplorerSettings(GroupName = nameof(Contents))]
public sealed class ContentsController : ApiController
private readonly IContentQueryService contentQuery;
@ -16,7 +16,7 @@ namespace Squidex.Areas.Api.Controllers.Contents.Models
public sealed class BulkResultDto
/// The error when the import failed.
/// The error when the bulk job failed.
public ErrorDto? Error { get; set; }
@ -28,7 +28,7 @@ namespace Squidex.Areas.Api.Controllers.Contents.Models
public DomainId? Id { get; set; }
/// The data of the content when type is set to 'Upsert'.
/// The data of the content when type is set to 'Upsert', 'Create', 'Update' or 'Patch.
public NamedContentData? Data { get; set; }