dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #34631
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 17762: UserController.checkUserGroups, removed unnecessary check for can read, as the service layer will...
------------------------------------------------------------
revno: 17762
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Sun 2014-12-21 19:25:10 +0100
message:
UserController.checkUserGroups, removed unnecessary check for can read, as the service layer will return null if it cannot be read
modified:
dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/user/UserController.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/user/UserController.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/user/UserController.java 2014-12-19 15:42:38 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/user/UserController.java 2014-12-21 18:25:10 +0000
@@ -416,11 +416,6 @@
throw new CreateAccessDeniedException( "Can't add/update user: Can't find user group with UID = " + ug.getUid() );
}
- if ( !securityService.canRead( group ) )
- {
- throw new CreateAccessDeniedException( "Can't add/update user: Can't read the group with UID = " + ug.getUid() );
- }
-
if ( !authorizedToAdd && CollectionUtils.containsAny( group.getManagedByGroups(), currentUser.getGroups() ) )
{
authorizedToAdd = true;