| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | package com.osomapps.pt.programs; |
||
| 10 | @RestController |
||
| 11 | @RequestMapping("api/v1/programs") |
||
| 12 | class ProgramsResource { |
||
| 13 | |||
| 14 | private final ProgramService programService; |
||
| 15 | |||
| 16 | @Autowired |
||
| 17 | ProgramsResource(ProgramService programService) { |
||
| 18 | this.programService = programService; |
||
| 19 | } |
||
| 20 | |||
| 21 | @GetMapping |
||
| 22 | List<ProgramResponseDTO> findAll(@RequestHeader(value = "X-Token") String token) { |
||
| 23 | return programService.getExamples(token); |
||
| 24 | } |
||
| 26 |