Beispiel #1
0
        public async Task <IActionResult> Push([FromBody] PushWebhookDTO pushWebhookDto)
        {
            await _webhookService.ProcessPushWebhook(pushWebhookDto);

            return(Ok());
        }