source: trip-planner/src/main/java/finki/diplomska/tripplanner/web/rest/CategoriesRestController.java@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 885 bytes
Line 
1package finki.diplomska.tripplanner.web.rest;
2
3import finki.diplomska.tripplanner.models.Category;
4import finki.diplomska.tripplanner.service.CategoryService;
5import org.springframework.web.bind.annotation.CrossOrigin;
6import org.springframework.web.bind.annotation.GetMapping;
7import org.springframework.web.bind.annotation.RequestMapping;
8import org.springframework.web.bind.annotation.RestController;
9
10import java.util.List;
11
12@RestController
13@CrossOrigin(origins = "http://localhost:4200")
14@RequestMapping(value = "/api")
15public class CategoriesRestController {
16
17 private final CategoryService categoryService;
18
19 public CategoriesRestController(CategoryService categoryService) {
20 this.categoryService = categoryService;
21 }
22
23 @GetMapping(value = "/categories")
24 public List<Category> findAllCategories(){
25 return this.categoryService.findAll();
26 }
27}
Note: See TracBrowser for help on using the repository browser.