10 lines
153 B
Plaintext
10 lines
153 B
Plaintext
|
export default {
|
||
|
resource: "group",
|
||
|
|
||
|
map() {
|
||
|
this.route("reports", function() {
|
||
|
this.route("show", { path: "/:query_id" });
|
||
|
});
|
||
|
}
|
||
|
};
|