2015-06-25 13:26:31 -07:00
|
|
|
export default {
|
2018-10-10 17:26:23 +05:30
|
|
|
resource: "admin.adminPlugins",
|
|
|
|
|
path: "/plugins",
|
2015-06-25 13:26:31 -07:00
|
|
|
map() {
|
2025-02-10 14:54:01 +11:00
|
|
|
this.route("explorer", function () {
|
|
|
|
|
this.route("queries", function () {
|
|
|
|
|
this.route("details", { path: "/:query_id" });
|
|
|
|
|
});
|
|
|
|
|
});
|
2020-09-04 13:23:11 +02:00
|
|
|
},
|
2015-06-25 13:26:31 -07:00
|
|
|
};
|