Changeset cc4db18 for resTools_backend/backend/Controllers
- Timestamp:
- 07/06/22 13:13:35 (2 years ago)
- Branches:
- master
- Children:
- 899b19d
- Parents:
- d76b7ee
- Location:
- resTools_backend/backend/Controllers
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
resTools_backend/backend/Controllers/ReservationsController.cs
rd76b7ee rcc4db18 27 27 } 28 28 29 [Authorize] 30 [HttpGet("new")] 31 public async Task<List<ReservationResponse>> GetReservationsNew() 32 { 33 return await _reservationService.GetNewReservations(); 34 } 35 29 36 [HttpPost()] 30 37 public async Task<IActionResult> CreateReservation([FromBody] CreateReservationRequest req) … … 35 42 36 43 [Authorize] 37 [HttpPut("{rid} ")]44 [HttpPut("{rid}/status")] 38 45 public async Task<IActionResult> ChangeStatus(int rid, [FromQuery] ReservationStatus status) 39 46 { … … 41 48 return Ok(); 42 49 } 50 51 [Authorize] 52 [HttpPut("{rid}/table")] 53 public async Task<IActionResult> ChangeTable(int rid, [FromQuery] int tableId) 54 { 55 await _reservationService.AssignTable(tableId, rid); 56 return Ok(); 57 } 43 58 } -
resTools_backend/backend/Controllers/RestaurantsController.cs
rd76b7ee rcc4db18 37 37 return response; 38 38 } 39 40 [HttpPost("upload")] 41 public async Task<IActionResult> UploadImage([FromForm] IFormFile file) 42 { 43 await _restaurantService.UploadImage(file); 44 return Ok(); 45 } 46 47 [Authorize] 48 [HttpPut()] 49 public async Task<IActionResult> UpdateRestaurant([FromBody] UpdateRestaurantRequest req) 50 { 51 await _restaurantService.UpdateRestaurant(req); 52 return Ok(); 53 } 39 54 }
Note:
See TracChangeset
for help on using the changeset viewer.