public List findByName()

in src/main/java/com/example/blog/controllers/UserController.java [30:33]


    public List<UserDto> findByName(@PathVariable String lastname){
        List<User> userList = userRepository.findByLastname(lastname);
        return userList.stream().map(userMapper::toDto).collect(Collectors.toList());
    }