1
0

feat(projects): remove namespaces

This commit is contained in:
kolaente
2022-12-29 16:40:06 +01:00
parent 0795828a9f
commit 16de7cd591
22 changed files with 317 additions and 3337 deletions

View File

@ -77,7 +77,7 @@ func (l *Label) hasAccessToLabel(s *xorm.Session, a web.Auth) (has bool, maxRigh
builder.
Select("id").
From("tasks").
Where(builder.In("project_id", getUserProjectsStatement(u.ID).Select("l.id"))),
Where(builder.In("project_id", getUserProjectsStatement(u.ID, "", false).Select("l.id"))),
)
ll := &LabelTask{}