blob: 714092f9be69e9e94a524040546242a044827dc5 [file] [log] [blame]
module.exports = function(routes) {
routes.addRoute('/help', handleHelpRoute);
};
function handleHelpRoute(state) {
// Set the page to help
state.navigation.pageKey.set('help');
}