Contribution page #71

Open
KevinMidboe wants to merge 3 commits from feat/contribution_page into master
Showing only changes of commit 554257434d - Show all commits

View File

@@ -332,6 +332,11 @@ const getWinnerByName = (name) => {
})
}
const projectContributors = () => {
return fetch("/api/project/contributors")
.then(resp => resp.json())
}
export {
statistics,
colorStatistics,
@@ -365,5 +370,6 @@ export {
postWineChosen,
historyAll,
historyByDate,
getWinnerByName
getWinnerByName,
projectContributors
};