2019-04-01 06:39:49 -04:00
|
|
|
import { scrollTop } from "discourse/mixins/scroll-top";
|
|
|
|
|
2014-07-22 23:20:45 -04:00
|
|
|
export default Discourse.Route.extend({
|
2019-04-01 06:39:49 -04:00
|
|
|
activate() {
|
|
|
|
this.controllerFor("admin-dashboard").fetchProblems();
|
|
|
|
this.controllerFor("admin-dashboard").fetchDashboard();
|
|
|
|
scrollTop();
|
2013-02-22 15:41:12 -05:00
|
|
|
}
|
|
|
|
});
|