mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-14 09:19:40 +00:00
Add application column to tasks (#1291)
Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
This commit is contained in:
parent
fe0f971842
commit
379d5a30cd
7 changed files with 42 additions and 0 deletions
|
@ -91,6 +91,11 @@ class TaskBase(BaseModel):
|
|||
description="The type of the task",
|
||||
examples=[TaskType.general, TaskType.validation],
|
||||
)
|
||||
application: str | None = Field(
|
||||
default=None,
|
||||
description="The application for which the task is running",
|
||||
examples=["forms"],
|
||||
)
|
||||
|
||||
|
||||
class TaskRequest(TaskBase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue