Skip to content
Snippets Groups Projects

Resolve "As a user, I would like a town specific page which shows all trails for that town so that I can easily see my progress"

Compare and Show latest version
2 files
+ 66
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -28,6 +28,14 @@ public class PlacesController {
@Autowired
private TrailsRepository trailsRepo;
@GetMapping()
public ModelAndView getTownsPages(){
ModelAndView modelAndView = new ModelAndView("");
List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords();
List<Location> approvedLocations = locationRepo.getAllApprovedLocations();
}
@GetMapping("/checkpoints")
public ModelAndView getLocationPages(){
Loading