Merge pull request #4578 from vinkas0/fix/plugins-route
fix: adminPlugins:index route is missing
This commit is contained in:
commit
cf9ebb85ec
|
@ -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: '/' });
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue