set up print

This commit is contained in:
mr 2024-07-29 14:19:48 +02:00
parent 956af8f5f5
commit e2f722e17b

View File

@ -115,7 +115,7 @@ func (wfa WorkspaceMongoAccessor) LoadAll() ([]utils.ShallowDBObject, int, error
return nil, 404, err
}
for _, r := range results {
objs = append(objs, &r.AbstractObject)
objs = append(objs, &r)
}
return objs, 200, nil
}