mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-10 09:32:32 +08:00
commit
40ebcf4b4b
1 changed files with 4 additions and 1 deletions
|
@ -47,7 +47,10 @@ func racAutoDisableHook() error {
|
|||
continue
|
||||
}
|
||||
for _, client := range clients {
|
||||
if (client.OwnerID == user.UserName) && !user.IsAdmin && !user.IsSuperAdmin && client.Enabled {
|
||||
if (client.OwnerID == user.UserName) &&
|
||||
user.PlatformRoleID != models.SuperAdminRole &&
|
||||
user.PlatformRoleID != models.AdminRole &&
|
||||
client.Enabled {
|
||||
slog.Info(fmt.Sprintf("disabling ext client %s for user %s due to RAC autodisabling", client.ClientID, client.OwnerID))
|
||||
if err := disableExtClient(&client); err != nil {
|
||||
slog.Error("error disabling ext client in RAC autodisable hook", "error", err)
|
||||
|
|
Loading…
Reference in a new issue