Update Resource

This commit is contained in:
mr
2024-07-24 14:49:04 +02:00
parent ac2111a365
commit 357d79e68b
8 changed files with 16 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ func (wfa *WorkflowResourceMongoAccessor) DeleteOne(id string) (utils.DBObject,
}
func (wfa *WorkflowResourceMongoAccessor) UpdateOne(set utils.DBObject, id string) (utils.DBObject, int, error) {
return wfa.GenericUpdateOne(set, id, wfa)
return wfa.GenericUpdateOne(set, id, wfa, &WorkflowResource{})
}
func (wfa *WorkflowResourceMongoAccessor) StoreOne(data utils.DBObject) (utils.DBObject, int, error) {
@@ -28,7 +28,7 @@ func (wfa *WorkflowResourceMongoAccessor) CopyOne(data utils.DBObject) (utils.DB
return wfa.GenericStoreOne(data, wfa)
} else {
data.(*WorkflowResource).UUID = res.GetID()
return wfa.GenericUpdateOne(data, res.GetID(), wfa)
return wfa.GenericUpdateOne(data, res.GetID(), wfa, &WorkflowResource{})
}
}