mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-02-17 17:04:49 +00:00
10 lines
155 B
JavaScript
10 lines
155 B
JavaScript
export default {
|
|
resource: "group",
|
|
|
|
map() {
|
|
this.route("reports", function () {
|
|
this.route("show", { path: "/:query_id" });
|
|
});
|
|
},
|
|
};
|