diff --git a/app/models/contributor.js b/app/models/contributor.js index c591edc..293bdcd 100644 --- a/app/models/contributor.js +++ b/app/models/contributor.js @@ -36,7 +36,10 @@ export default Ember.Object.extend({ let profileJSON = JSON.parse(content); let profile = Ember.Object.create(profileJSON); - this.set('name', profile.get('name')); + this.setProperties({ + name: profile.get('name'), + kind: profile.get('kind') + }); let accounts = profile.get('accounts'); let github = accounts.findBy('site', 'github.com');