Merge pull request #717 from mewtaylor/issue/gh-r2-3798

[Master] Hotfix: Allow urls with `ajax` to pass through
This commit is contained in:
Matthew Taylor 2016-07-11 15:21:56 -04:00 committed by GitHub
commit e9c6213e51

View file

@ -26,26 +26,26 @@
{
"name": "explore",
"pattern": "^/explore/:projects/:all/?$",
"routeAlias": "^/explore",
"routeAlias": "^/explore(?!/ajax)",
"view": "explore/explore",
"title": "Explore"
},
{
"name": "explore-redirect",
"pattern": "^/explore/?$",
"routeAlias": "^/explore",
"routeAlias": "^/explore(?!/ajax)",
"redirect": "/explore/projects/all"
},
{
"name": "explore-projects-redirect",
"pattern": "^/explore/projects/?$",
"routeAlias": "^/explore",
"routeAlias": "^/explore(?!/ajax)",
"redirect": "/explore/projects/all"
},
{
"name": "explore-studios-redirect",
"pattern": "^/explore/studios/?$",
"routeAlias": "^/explore",
"routeAlias": "^/explore(?!/ajax)",
"redirect": "/explore/studios/all"
},
{