10 lines
224 B
Plaintext
10 lines
224 B
Plaintext
|
export default {
|
||
|
resource: 'admin.adminPlugins',
|
||
|
path: '/plugins',
|
||
|
map() {
|
||
|
this.route('chat', function(){
|
||
|
this.route('index', { 'path': '/' });
|
||
|
this.route('provider', {path: '/:provider'});
|
||
|
});
|
||
|
}
|
||
|
};
|