This commit is contained in:
Piotr Dec 2025-10-22 23:58:15 +02:00
parent 569aefeccb
commit 3845cc7ecf
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
3 changed files with 62 additions and 5 deletions

View file

@ -30,5 +30,5 @@ class APIv1:
@router.post("/ci", summary="CI Webhook")
async def ci(self, request: Request):
self.webhook_service.process_ci_event(mapper.map(request))
self.webhook_service.enqueue(mapper.map(request))
return Response(status_code=201)