Refactor proposals #38

Merged
fsmanuel merged 6 commits from refactor/proposal into master 2018-04-08 12:02:28 +00:00
Showing only changes of commit 31a1f21dcd - Show all commits
+2 -2
View File
@@ -4,12 +4,12 @@ import Route from 'ember-route';
export default Route.extend({ export default Route.extend({
kredits: injectService(), kredits: injectService(),
setupController(controller, model) { setupController(controller) {
this._super(...arguments); this._super(...arguments);
this.get('kredits').getContributors() this.get('kredits').getContributors()
.then((contributors) => { .then((contributors) => {
this.controller.set('contributors', contributors); controller.set('contributors', contributors);
}); });
} }
}); });