Files
kredits-web/app/models/contributor.js
T
2017-02-05 15:59:56 +08:00

15 lines
298 B
JavaScript

import Ember from 'ember';
export default Ember.Object.extend({
github_username: null,
github_uid: null,
kredits: null,
address: null,
avatarURL: function() {
return `https\:\/\/avatars2.githubusercontent.com/u/${this.get('github_uid')}?v=3&s=128`;
}.property('github_uid')
});