[management] add missing network admin mapping (#3751)

This commit is contained in:
Pedro Maia Costa 2025-04-28 11:05:27 +01:00 committed by GitHub
parent 84bfecdd37
commit 47c3afe561
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,6 +39,8 @@ func StrRoleToUserRole(strRole string) UserRole {
return UserRoleBillingAdmin
case "auditor":
return UserRoleAuditor
case "network_admin":
return UserRoleNetworkAdmin
default:
return UserRoleUnknown
}