Files
kredits-web/app/models/contributor.js
T
basti 871731110b Process contributor data
Add util function for processing contributor data, and remove bignums,
etc.
2020-05-27 16:27:08 +02:00

23 lines
372 B
JavaScript

import EmberObject from '@ember/object';
export default EmberObject.extend({
// Contract
id: null,
account: null,
balance: 0,
totalKreditsEarned: 0,
contributionsCount: 0,
isCore: false,
ipfsHash: null,
// IPFS
kind: null,
name: null,
url: null,
github_username: null,
github_uid: null,
wiki_username: null,
zoom_display_name: null,
});