array missing

This commit is contained in:
mr
2026-04-02 14:55:06 +02:00
parent 4f0714cb11
commit 54985bbc45

View File

@@ -47,11 +47,11 @@ type Workflow struct {
// Schedule *WorkflowSchedule `bson:"schedule,omitempty" json:"schedule,omitempty"` // Schedule is the schedule of the workflow
Shared []string `json:"shared,omitempty" bson:"shared,omitempty"` // Shared is the ID of the shared workflow // AbstractWorkflow contains the basic fields of a workflow
Env map[string]models.Param `json:"env,omitempty" bson:"env,omitempty"`
Inputs map[string]models.Param `json:"inputs,omitempty" bson:"inputs,omitempty"`
Outputs map[string]models.Param `json:"outputs,omitempty" bson:"outputs,omitempty"`
Args map[string]string `json:"args,omitempty" bson:"args,omitempty"`
Exposes map[string]models.Expose `bson:"exposes,omitempty" json:"exposes,omitempty"` // Expose is the execution
Env map[string][]models.Param `json:"env,omitempty" bson:"env,omitempty"`
Inputs map[string][]models.Param `json:"inputs,omitempty" bson:"inputs,omitempty"`
Outputs map[string][]models.Param `json:"outputs,omitempty" bson:"outputs,omitempty"`
Args map[string][]string `json:"args,omitempty" bson:"args,omitempty"`
Exposes map[string][]models.Expose `bson:"exposes,omitempty" json:"exposes,omitempty"` // Expose is the execution
}
func (d *Workflow) GetAccessor(request *tools.APIRequest) utils.Accessor {