Move all metadata to IPFS with proper schemas #16

Merged
raucao merged 23 commits from feature/ipfs-metadata into master 2017-06-08 22:28:15 +00:00
Showing only changes of commit 0510cf2389 - Show all commits
+4 -1
View File
@@ -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');