|
|
@@ -210,11 +210,15 @@ public class UserController {
|
|
|
return userService.rejectEnterpriseAuth(userId);
|
|
|
}
|
|
|
|
|
|
+ @LoginRequired
|
|
|
+ @SysAdminRequired
|
|
|
@RequestMapping(value = "/user/authentication/handling", method = RequestMethod.GET)
|
|
|
public List<BaseAuthVO> getAuthingList(){
|
|
|
return userService.getAuthingList();
|
|
|
}
|
|
|
|
|
|
+ @LoginRequired
|
|
|
+ @SysAdminRequired
|
|
|
@RequestMapping(value = "/user/authentication/handled", method = RequestMethod.GET)
|
|
|
public List<BaseAuthVO> getAuthedList(){
|
|
|
return userService.getAuthedList();
|