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