test: add e2e test suite and fix namespace/mention/assignee flags

This commit is contained in:
2026-03-29 23:56:43 +02:00
parent dadd3d9e13
commit d569a4dea9
6 changed files with 236 additions and 16 deletions

View File

@@ -134,7 +134,7 @@ func (n *Node) AddRelation(relType RelType, target string) {
if n.relations == nil {
n.relations = make(map[string][]string)
}
if relType == RelAssignee || relType == RelCreated {
if relType == RelAssignee || relType == RelCreated || relType == RelInNamespace {
n.relations[string(relType)] = []string{target}
return
}