mirror of
https://github.com/discourse/discourse-chat-integration.git
synced 2025-03-08 18:59:38 +00:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
export default {
|
|
resource: "admin.adminPlugins",
|
|
path: "/plugins",
|
|
map() {
|
|
this.route("chat", function() {
|
|
this.route("provider", { path: "/:provider" });
|
|
});
|
|
}
|
|
};
|