Skip to content

Commit f1d9137

Browse files
committed
add "url" parameter to DescribeWorkflow and DescribeWorkflowDefinition
1 parent c92e576 commit f1d9137

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

jupyter_scheduler/workflows.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,7 @@ class DescribeWorkflow(BaseModel):
393393
tasks: List[str] = None
394394
status: Status = Status.CREATED
395395
active: Optional[bool] = None
396+
url: Optional[str] = None
396397

397398
class Config:
398399
orm_mode = True
@@ -430,6 +431,7 @@ class DescribeWorkflowDefinition(BaseModel):
430431
timezone: Optional[str] = None
431432
status: Status = Status.CREATED
432433
active: Optional[bool] = None
434+
url: Optional[str] = None
433435

434436
class Config:
435437
orm_mode = True

0 commit comments

Comments
 (0)