mirror of
https://github.com/discourse/discourse-chat-integration.git
synced 2025-02-27 14:36:42 +00:00
11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
export default {
|
|
resource: 'admin.adminPlugins',
|
|
path: '/plugins',
|
|
map() {
|
|
this.route('chat', function(){
|
|
this.route('provider', {path: '/:provider'});
|
|
});
|
|
|
|
|
|
}
|
|
}; |