mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
10 lines
267 B
JavaScript
10 lines
267 B
JavaScript
import { scrollTop } from "discourse/mixins/scroll-top";
|
|
|
|
export default Discourse.Route.extend({
|
|
activate() {
|
|
this.controllerFor("admin-dashboard-next").fetchProblems();
|
|
this.controllerFor("admin-dashboard-next").fetchDashboard();
|
|
scrollTop();
|
|
}
|
|
});
|