Page MenuHomePhabricator

Use named routes to avoid breaking URLs
Closed, ResolvedPublic

Description

Currently, most routes in the template are just plain strings relative to {$ basepath $}, which break the application whenever we change an URL path in routes.php. A better way to solve this would be to name all the routes (with ->bind(route_name)) and use $app['url_generator'] to generate the URLs in the route handlers/presenters.