We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d62c6b commit 176fc16Copy full SHA for 176fc16
firebase/functions/index.js
@@ -71,6 +71,7 @@ exports.resultCounter = functions.database.ref('/v2/results/{projectId}/{groupId
71
const contributionTime = userContributionRef.child(context.params.groupId).once('value')
72
.then((dataSnapshot) => {
73
if (dataSnapshot.exists()) {
74
+ console.log('group contribution exists already. user: '+context.params.userId' project: '+context.params.projectId+' group: '+context.params.groupId)
75
return null
76
}
77
else {
0 commit comments