Extensibility: discussion list params

Also give the root controller the name of the current route so they can
easily route back to it
This commit is contained in:
Toby Zerner
2015-05-02 08:43:38 +09:30
parent 288fd694a8
commit ffc2863f70
4 changed files with 70 additions and 37 deletions

View File

@ -1,6 +1,7 @@
export default function mapRoutes(routes) {
var map = {};
for (var r in routes) {
routes[r][1].props.routeName = r;
map[routes[r][0]] = routes[r][1];
}
return map;