Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package com.osomapps.pt.goals; |
||
9 | @RestController |
||
10 | @RequestMapping("api/v1/goals") |
||
11 | class GoalsResource { |
||
12 | |||
13 | private final GoalService goalService; |
||
14 | |||
15 | @Autowired |
||
16 | GoalsResource(GoalService goalService) { |
||
17 | this.goalService = goalService; |
||
18 | } |
||
19 | |||
20 | @GetMapping |
||
21 | List<GoalDTO> findAll() { |
||
22 | return goalService.findAll(); |
||
23 | } |
||
25 |