2017-06-28 10:12:37 -04:00
|
|
|
export default {
|
2018-09-12 11:16:18 -04:00
|
|
|
resource: "admin.adminPlugins",
|
|
|
|
path: "/plugins",
|
2017-06-28 10:12:37 -04:00
|
|
|
map() {
|
2020-09-04 07:23:28 -04:00
|
|
|
this.route("chat", function () {
|
2018-09-12 11:16:18 -04:00
|
|
|
this.route("provider", { path: "/:provider" });
|
|
|
|
});
|
2020-09-04 07:23:28 -04:00
|
|
|
},
|
2018-09-12 11:16:18 -04:00
|
|
|
};
|