workflow partial allows
This commit is contained in:
parent
7201cabb43
commit
88b7cfe2fd
@ -173,7 +173,7 @@ func (a *workflowMongoAccessor) LoadOne(id string) (utils.DBObject, int, error)
|
|||||||
return utils.GenericLoadOne[*Workflow](id, func(d utils.DBObject) (utils.DBObject, int, error) {
|
return utils.GenericLoadOne[*Workflow](id, func(d utils.DBObject) (utils.DBObject, int, error) {
|
||||||
w := d.(*Workflow)
|
w := d.(*Workflow)
|
||||||
a.execute(w, false, true) // if no workspace is attached to the workflow, create it
|
a.execute(w, false, true) // if no workspace is attached to the workflow, create it
|
||||||
return a.verifyResource(d), 200, nil
|
return d, 200, nil
|
||||||
}, a)
|
}, a)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -188,7 +188,7 @@ func (a *workflowMongoAccessor) Search(filters *dbs.Filters, search string, isDr
|
|||||||
func (a *workflowMongoAccessor) verifyResource(obj utils.DBObject) utils.DBObject {
|
func (a *workflowMongoAccessor) verifyResource(obj utils.DBObject) utils.DBObject {
|
||||||
wf := obj.(*Workflow)
|
wf := obj.(*Workflow)
|
||||||
if wf.Graph == nil {
|
if wf.Graph == nil {
|
||||||
return nil
|
return wf
|
||||||
}
|
}
|
||||||
for _, item := range wf.Graph.Items {
|
for _, item := range wf.Graph.Items {
|
||||||
t, resource := item.GetResource()
|
t, resource := item.GetResource()
|
||||||
|
Loading…
Reference in New Issue
Block a user