Fix(routes): ignore link routes in lang redirects

This commit is contained in:
Berkeley Martinez
2016-07-28 22:37:24 -07:00
parent 1c9b419c2f
commit 1981e5b1a9

View File

@ -1,6 +1,8 @@
export default [
'auth',
'services'
'services',
'link'
].reduce((throughs, route) => {
throughs[route] = true; return throughs;
throughs[route] = true;
return throughs;
}, {});