Merge pull request #2903 from loganhz/logging-test

Fix logging action issue
This commit is contained in:
Westly Wright 2019-04-17 10:22:44 -07:00 committed by GitHub
commit 03a331cedb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -3,4 +3,10 @@ import Controller from '@ember/controller';
export default Controller.extend({
queryParams: ['targetType'],
targetType: 'none',
actions: {
refreshModel() {
this.send('refresh');
}
}
});

View File

@ -75,7 +75,7 @@ export default Route.extend({
},
actions: {
refreshModel() {
refresh() {
this.refresh();
}
},