source: src/main/java/it/finki/tinki/web/controller/WorkRegisterController.java@ bd46dbb

Last change on this file since bd46dbb was bd46dbb, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

refactoring and response dto

  • Property mode set to 100644
File size: 564 bytes
Line 
1package it.finki.tinki.web.controller;
2
3import it.finki.tinki.model.dto.response.work.JobResponseDTO;
4import org.springframework.web.bind.annotation.PostMapping;
5import org.springframework.web.bind.annotation.RequestBody;
6import org.springframework.web.bind.annotation.RequestMapping;
7import org.springframework.web.bind.annotation.RestController;
8
9@RestController
10@RequestMapping(path = "/api/register/work")
11public class WorkRegisterController {
12
13// @PostMapping("/job")
14// public JobResponseDTO registerJob(@RequestBody JobRegisterDTO body){
15//
16// }
17}
Note: See TracBrowser for help on using the repository browser.