[management] update account delete with proper proxy domain and service cleanup (#5817)

This commit is contained in:
Pascal Fischer
2026-04-10 13:08:04 +02:00
committed by GitHub
parent 789b4113fe
commit 15709bc666
7 changed files with 75 additions and 6 deletions

View File

@@ -30,3 +30,8 @@ func (d *Domain) EventMeta() map[string]any {
"validated": d.Validated,
}
}
func (d *Domain) Copy() *Domain {
dCopy := *d
return &dCopy
}