.gitignore update

This commit is contained in:
yannick.blanken@csc-online.eu 2022-06-10 08:16:22 +02:00
parent c811615d6f
commit 61002ffa45
4 changed files with 1 additions and 3 deletions

Binary file not shown.

View File

@ -11,7 +11,6 @@ import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.crypto.password.PasswordEncoder;
@SpringBootApplication
@EnableConfigurationProperties(StorageProperties.class)
public class ODPAppVehOwnServerApplication extends SpringBootServletInitializer {

View File

@ -34,7 +34,7 @@ public class DeviceRegistrationController extends AbstractRestController {
var result = dtoMapper.mapCustomerDevicesToDto(customerService.findAllDevices(user.getUserId()));
return ResponseEntity.ok(customerService.findAllDevices(user.getUserId()));
return ResponseEntity.ok(result);
}
@PostMapping

View File

@ -21,7 +21,6 @@ import java.util.List;
public class VehOwnAppClient extends AbstractClient implements IDataClient {
private final ClientService clientService;
private final CustomerService customerService;