This commit is contained in:
mr 2024-12-03 10:01:10 +01:00
parent 2924ccd23b
commit 471e0c9d9b

View File

@ -212,9 +212,12 @@ func genericLoadAll[T DBObject](res *mgb.Cursor, code int, err error, f func(DBO
if err = res.All(mongo.MngoCtx, &results); err != nil {
return nil, 404, err
}
fmt.Println("results 1", res, results)
var test []map[string]interface{}
_ = res.All(mongo.MngoCtx, &test)
fmt.Println("results 1", res, results, test, err)
for _, r := range results {
fmt.Println("results", r.VerifyAuth(a.GetPeerID(), a.GetGroups()))
fmt.Println("results", r)
if !r.VerifyAuth(a.GetPeerID(), a.GetGroups()) {
continue
}