From 826d7586b12741159f029cf9892339b4045f3c1f Mon Sep 17 00:00:00 2001 From: mr Date: Thu, 30 Jan 2025 08:24:03 +0100 Subject: [PATCH] adding inputs output struct based on argo naming for now --- models/workflow/graph/link.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/workflow/graph/link.go b/models/workflow/graph/link.go index c74b53d..b1d22fd 100644 --- a/models/workflow/graph/link.go +++ b/models/workflow/graph/link.go @@ -6,7 +6,7 @@ type StorageProcessingGraphLink struct { Write bool `json:"write" bson:"write"` Source string `json:"source" bson:"source"` Destination string `json:"destination" bson:"destination"` - FileName string `json:"file_name" bson:"file_name"` + FileName string `json:"filename" bson:"filename"` } // GraphLink is a struct that represents a link between two items in a graph