Skip to content
Snippets Groups Projects

Resolve "As a user, I want to see all trails across a town and seamlessly move between them."

package Team5.SmartTowns.Webpages;
import Team5.SmartTowns.trails.Trail;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.stereotype.Controller;
import static Team5.SmartTowns.trails.Trail.trails;
@Controller
public class WebpageController {
@GetMapping("/Caerleon")
@@ -46,6 +41,4 @@ public class WebpageController {
}
Loading