V15: Add webhooklogs endpoint (#17838)

* Add webhook logs endpoint

* Add attribute routing

* Add to open api json
This commit is contained in:
Nikolaj Geisle
2025-01-07 11:18:32 +01:00
committed by GitHub
parent e4c5da18d5
commit 66f2b60141
6 changed files with 187 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
using Microsoft.AspNetCore.Mvc;
using Umbraco.Cms.Api.Management.Routing;
using Umbraco.Cms.Core;
namespace Umbraco.Cms.Api.Management.Controllers.Webhook.Logs;
[VersionedApiBackOfficeRoute($"{Constants.UdiEntityType.Webhook}")]
[ApiExplorerSettings(GroupName = "Webhook")]
public class WebhookLogControllerBase : ManagementApiControllerBase;