2019-09-11 09:09:41 -05:00
|
|
|
export default {
|
|
|
|
|
resource: "group",
|
|
|
|
|
|
|
|
|
|
map() {
|
2020-09-04 13:23:11 +02:00
|
|
|
this.route("reports", function () {
|
2019-09-11 09:09:41 -05:00
|
|
|
this.route("show", { path: "/:query_id" });
|
|
|
|
|
});
|
2020-09-04 13:23:11 +02:00
|
|
|
},
|
2019-09-11 09:09:41 -05:00
|
|
|
};
|