From de6184273a69aeed2aac4e3330795ea48f4a8ad7 Mon Sep 17 00:00:00 2001 From: Piotr Dec Date: Fri, 17 Oct 2025 23:16:38 +0200 Subject: [PATCH] Webhook model changed --- app/api/models.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/api/models.py b/app/api/models.py index 35afedb..b27765b 100644 --- a/app/api/models.py +++ b/app/api/models.py @@ -4,11 +4,11 @@ from typing import List @dataclass class Request: - build_id: str - build_url: str - commit_id: str - commit_url: str - changelist: List[str] + _id: str + commit: str + message: str + started: str + files: List[str] @dataclass class Response: