2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 06:10:44 +00:00
2020-07-09 09:09:53 +00:00

15 lines
425 B
JavaScript

import Helper from '@ember/component/helper';
import { inject as service } from '@ember/service';
import { getOwner } from '@ember/application';
export default Helper.extend({
router: service('router'),
compute(params, hash) {
return () => {
const container = getOwner(this);
const routeName = this.router.currentRoute.name;
return container.lookup(`route:${routeName}`).refresh();
};
},
});