diff --git a/BACK_END/Controllers/ReviewController.cs b/BACK_END/Controllers/ReviewController.cs index a0033af..56e825e 100644 --- a/BACK_END/Controllers/ReviewController.cs +++ b/BACK_END/Controllers/ReviewController.cs @@ -51,6 +51,11 @@ public async Task AddReview([FromBody] ReviewForAddDTO reviewForA return BadRequest("Something isn't valid pelase try again !!!"); } + /// + /// Get All Reviews + /// + /// + [HttpGet("all")] [Authorize] public async Task GetReviews()