.gitignore update
This commit is contained in:
parent
c811615d6f
commit
61002ffa45
Binary file not shown.
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ import java.util.List;
|
|||
|
||||
public class VehOwnAppClient extends AbstractClient implements IDataClient {
|
||||
|
||||
|
||||
private final ClientService clientService;
|
||||
|
||||
private final CustomerService customerService;
|
||||
|
|
|
|||
Loading…
Reference in New Issue