From 12cb4108f774b0f1575717d7d8e662f4e04496dd Mon Sep 17 00:00:00 2001 From: Nikolay Yurin Date: Wed, 11 Oct 2023 14:12:08 -0700 Subject: [PATCH] api.models: Add patchset field to node revision Signed-off-by: Nikolay Yurin --- api/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/models.py b/api/models.py index f7712673..7f9be2d3 100644 --- a/api/models.py +++ b/api/models.py @@ -187,6 +187,9 @@ class Revision(BaseModel): version: Optional[KernelVersion] = Field( description="Kernel version" ) + patchset: Optional[str] = Field( + description="Patchset hash" + ) class DefaultTimeout: