mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:27:30 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
import { inject as service } from "@ember/service";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default class AdminReportsIndexRoute extends DiscourseRoute {
|
|
@service router;
|
|
|
|
beforeModel() {
|
|
this.router.transitionTo("admin.dashboardReports");
|
|
}
|
|
}
|