mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUACAMOLE-360: Update active connection permission check to support user groups.
This commit is contained in:
@@ -97,7 +97,7 @@ public class ActiveConnectionPermissionService
|
||||
permissions.add(new ObjectPermission(ObjectPermission.Type.READ, identifier));
|
||||
|
||||
// If we're an admin, or the connection is ours, then we can DELETE
|
||||
if (isAdmin || targetUser.getIdentifier().equals(record.getUsername()))
|
||||
if (isAdmin || (targetEntity.isUser() && targetEntity.getIdentifier().equals(record.getUsername())))
|
||||
permissions.add(new ObjectPermission(ObjectPermission.Type.DELETE, identifier));
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user