Skip to content
Snippets Groups Projects

Security

Merged Jitka Viceníková requested to merge security into develop
Compare and Show latest version
4 files
+ 20
7
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -26,8 +26,8 @@ public class CarFacade {
@Cacheable(cacheNames = "cars", key = "#id")
@Transactional(readOnly = true)
public CarDto findById(Long id) {
return carMapper.mapToDto(carService.findById(id));
public CarDto get(Long id) {
return carMapper.mapToDto(carService.get(id));
}
public CarDto create(List<Long> componentIds) {
Loading