SCIM Rest logs
This commit is contained in:
@@ -47,6 +47,7 @@ public class RestOrganizationController {
|
||||
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
||||
public Organizations getUser(@PathVariable String id,
|
||||
@RequestParam(required = false) String attributes) {
|
||||
_logger.debug("Organizations id {} , attributes {}", id , attributes);
|
||||
Organizations org = organizationsService.get(id);
|
||||
return org;
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ public class RestUserInfoController {
|
||||
public UserInfo getUser(
|
||||
@PathVariable String id,
|
||||
@RequestParam(required = false) String attributes) {
|
||||
|
||||
_logger.debug("UserInfo id {} , attributes {}", id , attributes);
|
||||
UserInfo loadUserInfo = userInfoService.get(id);
|
||||
loadUserInfo.setDecipherable(null);
|
||||
return loadUserInfo;
|
||||
|
||||
Reference in New Issue
Block a user