diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/VenueController.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/VenueController.cs index 216a117..05c1aab 100644 --- a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/VenueController.cs +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/VenueController.cs @@ -18,14 +18,14 @@ public class VenueController : ControllerBase } [HttpGet] - public async Task Get() + public async Task GetAll() { var venues = await _venueService.GetAllVenues(); return Ok(venues); } [HttpGet("{venueId:int}")] - public async Task Get(int venueId) + public async Task GetVenue(int venueId) { if (venueId < 1) {