1
0
mirror of https://github.com/netbirdio/netbird.git synced 2025-04-04 14:30:52 +02:00

use new policy-rule object

This commit is contained in:
Pascal Fischer 2023-05-30 19:09:16 +02:00
parent 22e81f493b
commit 6fd13f563e

View File

@ -200,15 +200,16 @@ func (w *Worker) generateProperties() properties {
routes = routes + len(account.Routes)
nameservers = nameservers + len(account.NameServerGroups)
for _, rule := range account.Rules {
policyRule := rule.ToPolicyRule()
rulesProtocol[string(policyRule.Protocol)]++
if policyRule.Bidirectional {
for _, policy := range account.Policies {
for _, rule := range policy.Rules {
rulesProtocol[string(rule.Protocol)]++
if rule.Bidirectional {
rulesDirection["bidirectional"]++
} else {
rulesDirection["oneway"]++
}
}
}
for _, user := range account.Users {
if user.IsServiceUser {