2017-06-28 15:12:37 +01:00
|
|
|
export default {
|
2018-09-12 16:16:18 +01:00
|
|
|
resource: "admin.adminPlugins",
|
|
|
|
|
path: "/plugins",
|
2017-06-28 15:12:37 +01:00
|
|
|
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
|
|
|
};
|