fix: adminPlugins:index route missing

This commit is contained in:
Vinoth Kannan 2016-11-30 14:36:42 +05:30
parent e96487283e
commit a97c59ed2e

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: '/' });
});
});
};