File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed
src/main/java/com/github/throyer/common/springboot/controllers Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -53,9 +53,6 @@ public class UsersController {
5353 public ResponseEntity <Page <UserDetails >> index (
5454 Optional <Integer > page ,
5555 Optional <Integer > size
56- // Optional<String> name,
57- // Optional<String> email,
58- // ArrayList<String> roles
5956 ) {
6057 var result = findService .findAll (page , size );
6158 return ok (result );
Original file line number Diff line number Diff line change 11package com .github .throyer .common .springboot .controllers .app ;
22
3- import com .github .throyer .common .springboot .domain .models .pagination .Page ;
4- import com .github .throyer .common .springboot .domain .models .pagination .Pagination ;
53import com .github .throyer .common .springboot .domain .models .shared .Type ;
6- import com .github .throyer .common .springboot .domain .repositories .UserRepository ;
74import com .github .throyer .common .springboot .domain .services .user .FindUserService ;
85import com .github .throyer .common .springboot .domain .services .user .RemoveUserService ;
9- import com .github .throyer .common .springboot .domain .services .user .dto .SearchUser ;
106import com .github .throyer .common .springboot .utils .Toasts ;
117import java .util .Optional ;
128import org .springframework .beans .factory .annotation .Autowired ;
13- import org .springframework .data .domain .Sort ;
149import org .springframework .security .access .prepost .PreAuthorize ;
1510import org .springframework .stereotype .Controller ;
1611import org .springframework .ui .Model ;
@@ -36,9 +31,6 @@ public String index(
3631 Model model ,
3732 Optional <Integer > page ,
3833 Optional <Integer > size
39- // Optional<String> name,
40- // Optional<String> email,
41- // ArrayList<String> roles
4234 ) {
4335
4436 var result = findService .findAll (page , size );
You can’t perform that action at this time.
0 commit comments