nichunen commented on a change in pull request #790: KYLIN-4122 Add kylin user
and group manage modules
URL: https://github.com/apache/kylin/pull/790#discussion_r313231098
##########
File path:
server-base/src/main/java/org/apache/kylin/rest/service/KylinUserService.java
##########
@@ -130,6 +133,16 @@ public UserDetails loadUserByUsername(String userName)
throws UsernameNotFoundEx
return getKylinUserManager().list();
}
+ @Override
+ public List<ManagedUser> listUsers(String userName, Boolean isFuzzMatch)
throws IOException {
+ List<ManagedUser> userList = getKylinUserManager().list();
+ return getManagedUsersByFuzzMatching(userName, isFuzzMatch, userList,
null);
+ }
+ @Override
Review comment:
Blank line should be inserted between methods
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services