feat: content link states

This commit is contained in:
Nick
2019-09-02 15:33:40 -04:00
parent e491af44ad
commit efab00fa0c
7 changed files with 203 additions and 12 deletions

View File

@@ -22,7 +22,7 @@ module.exports = {
name: _.get(c, 'name', 'Anonymous') || '',
profile: _.get(c, 'profile', ''),
tier: _.toLower(_.get(c, 'tier', 'backers')),
totalDonated: _.get(c, 'totalAmountDonated', 0),
totalDonated: Math.ceil(_.get(c, 'totalAmountDonated', 0)),
twitter: _.get(c, 'twitter', '') || '',
website: _.get(c, 'website', '') || ''
}))