Merge branch 'feature/webhooks-page' of github.com:ONLYOFFICE/DocSpace into feature/webhooks-page

This commit is contained in:
Vladimir Khvan 2023-03-27 14:12:38 +05:00
commit ae6fbde080

View File

@ -88,7 +88,6 @@ public class WebhooksController : BaseSettingsController
_permissionContext.DemandPermissions(SecutiryConstants.EditPortalSettings);
ArgumentNullException.ThrowIfNull(model.Uri);
ArgumentNullException.ThrowIfNull(model.SecretKey);
ArgumentNullException.ThrowIfNull(model.Name);
var webhook = await _webhookDbWorker.UpdateWebhookConfig(model.Id, model.Name, model.Uri, model.SecretKey, model.Enabled);