This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects

Merge Master Bugfix back to Development

Merged Michael Breu requested to merge master into development
Compare and
13 files
+ 39
11
Compare changes
  • Side-by-side
  • Inline
Files
13
@@ -21,9 +21,10 @@ public class AuthorityService {
this.authorityRepository = authorityRepository;
}
// Get all users with authority ROLE_REVIEW_MANAGER
List<User> findAllUsersWithAuthority(String authority) {
log.info("Request to get all users with authority: {}", authority);
return authorityRepository.findAllUsersWithAuthority(authority);
log.info("Finding all users with authority: {}", authority);
List<User> users = authorityRepository.findAllUsersWithAuthority(authority);
log.info("Found {} users with authority: {}", users.size(), authority);
return users;
}
}