Merge pull request #4578 from vinkas0/fix/plugins-route

fix: adminPlugins:index route is missing
This commit is contained in:
Régis Hanol 2016-11-30 12:25:58 +01:00 committed by GitHub
commit cf9ebb85ec
1 changed files with 3 additions and 1 deletions

View File

@ -83,6 +83,8 @@ export default function() {
this.route('show', { path: '/:badge_id' });
});
this.route('adminPlugins', { path: '/plugins', resetNamespace: true });
this.route('adminPlugins', { path: '/plugins', resetNamespace: true }, function() {
this.route('index', { path: '/' });
});
});
};