mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-07-22 00:39:32 +08:00
隐藏管理员列表的密码信息返回
This commit is contained in:
parent
752ad585ec
commit
166dc4c1a2
@ -11,6 +11,7 @@ import xyz.playedu.api.types.PaginationResult;
|
|||||||
import xyz.playedu.api.types.JsonResponse;
|
import xyz.playedu.api.types.JsonResponse;
|
||||||
import xyz.playedu.api.util.HelperUtil;
|
import xyz.playedu.api.util.HelperUtil;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
@ -24,6 +25,15 @@ public class AdminUserController {
|
|||||||
@GetMapping("/index")
|
@GetMapping("/index")
|
||||||
public JsonResponse Index(@RequestParam(name = "page", defaultValue = "1") Integer page, @RequestParam(name = "size", defaultValue = "10") Integer size) {
|
public JsonResponse Index(@RequestParam(name = "page", defaultValue = "1") Integer page, @RequestParam(name = "size", defaultValue = "10") Integer size) {
|
||||||
PaginationResult<AdminUser> result = adminUserService.paginate(page, size, null);
|
PaginationResult<AdminUser> result = adminUserService.paginate(page, size, null);
|
||||||
|
|
||||||
|
ArrayList<AdminUser> data = new ArrayList<>();
|
||||||
|
for (AdminUser adminUser : result.getData()) {
|
||||||
|
adminUser.setPassword(null);
|
||||||
|
adminUser.setSalt(null);
|
||||||
|
data.add(adminUser);
|
||||||
|
}
|
||||||
|
result.setData(data);
|
||||||
|
|
||||||
return JsonResponse.data(result);
|
return JsonResponse.data(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user