From 74a1f66d26c20b0509ea351046cc86c66c3e6731 Mon Sep 17 00:00:00 2001 From: mr Date: Wed, 29 Jan 2025 08:37:43 +0100 Subject: [PATCH] adding inputs output struct based on argo naming for now^C --- models/common/models/inoutputs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/models/common/models/inoutputs.go b/models/common/models/inoutputs.go index 1850ff8..e1bb27e 100644 --- a/models/common/models/inoutputs.go +++ b/models/common/models/inoutputs.go @@ -9,6 +9,7 @@ type Artifact struct { type Param struct { Attr string `json:"attr" bson:"attr" validate:"required"` Value string `json:"value,omitempty" bson:"value,omitempty"` + Origin string `json:"origin,omitempty" bson:"origin,omitempty"` Readonly bool `json:"readonly" bson:"readonly" default:"true"` Optionnal bool `json:"optionnal" bson:"optionnal" default:"true"` }