Files

12 lines
245 B
JavaScript
Raw Permalink Normal View History

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() {
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
};