Files
discourse-chat-integration/assets/javascripts/admin/chat-route-map.js.es6
T

10 lines
188 B
JavaScript
Raw Normal View History

export default {
2018-09-12 16:16:18 +01:00
resource: "admin.adminPlugins",
path: "/plugins",
map() {
2020-09-04 13:23:28 +02:00
this.route("chat", function () {
2018-09-12 16:16:18 +01:00
this.route("provider", { path: "/:provider" });
});
2020-09-04 13:23:28 +02:00
},
2018-09-12 16:16:18 +01:00
};