Skip to content

Commit

Permalink
add uses to pipeline model
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Oct 9, 2023
1 parent d063df5 commit 07cdb98
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/api/src/backend/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ class Pipeline(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
env = models.JSONField(null=True)
params = models.JSONField(null=True)
uses = models.JSONField(null=True)
group = models.ForeignKey("backend.Group", related_name="pipelines", on_delete=models.CASCADE)
invocation_mode = models.CharField(max_length=16, default=EnumInvocationMode.Async)
max_exec_time = models.BigIntegerField(
Expand Down

0 comments on commit 07cdb98

Please sign in to comment.