Merge pull request #4498 from gdpelican/tags-show-route-fix

FIX: Properly name tag intersection route
This commit is contained in:
Guo Xiang Tan 2016-10-14 10:18:17 +08:00 committed by GitHub
commit 10dfcc2ae9
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ export default function() {
this.route('showCategory' + filter.capitalize(), {path: '/c/:category/:tag_id/l/' + filter});
this.route('showParentCategory' + filter.capitalize(), {path: '/c/:parent_category/:category/:tag_id/l/' + filter});
});
this.route('show', {path: 'intersection/:tag_id/*additional_tags'});
this.route('intersection', {path: 'intersection/:tag_id/*additional_tags'});
});
this.resource('tagGroups', {path: '/tag_groups'}, function() {