fix: Domain admin can see domain in home

This commit is contained in:
selfhoster selfhoster 2026-09-19 10:38:32 +02:00
commit 38700ee4cb
3 changed files with 15 additions and 9 deletions

View file

@ -42,7 +42,7 @@ impl<D: DatabaseInterface> Database<D> {
.list_all_domains()
.await?
.into_iter()
.filter(|d| user.role.can_see_domain(&d.name))
.filter(|d| user.can_see_domain(&d.name))
.collect())
}
}