Update TestNodeHierarchy to include a fuller FTN setup for testing. Update testing.

This commit is contained in:
2024-11-25 13:46:16 +11:00
parent 810e620526
commit 9c828d65e6
9 changed files with 548 additions and 373 deletions

View File

@@ -289,7 +289,7 @@ final class Echomail extends Model implements Packet
public function seenby()
{
return $this->belongsToMany(Address::class,'echomail_seenby')
->select(['id','zone_id','host_id','node_id'])
->select(['addresses.id','zone_id','host_id','node_id'])
->withPivot(['export_at','sent_at','sent_pkt'])
->dontCache()
->FTN2DOrder();