File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -30,15 +30,12 @@ exports.counter = functions.database.ref('/v2/results/{projectId}/{groupId}/{use
3030
3131
3232 // Firebase Realtime Database references
33- const contributorCountRef = admin . database ( ) . ref ( '/v2/projects/' + context . params . projectId + '/contributorCount' )
34-
3533 const groupFinishedCountRef = admin . database ( ) . ref ( '/v2/groups/' + context . params . projectId + '/' + context . params . groupId + '/finishedCount' )
3634 const groupRequiredCountRef = admin . database ( ) . ref ( '/v2/groups/' + context . params . projectId + '/' + context . params . groupId + '/requiredCount' )
3735 const numberOfTasksRef = admin . database ( ) . ref ( '/v2/groups/' + context . params . projectId + '/' + context . params . groupId + '/numberOfTasks' )
3836
3937 const taskContributionCountRef = admin . database ( ) . ref ( '/v2/users/' + context . params . userId + '/taskContributionCount' )
4038 const groupContributionCountRef = admin . database ( ) . ref ( '/v2/users/' + context . params . userId + '/groupContributionCount' )
41- const projectContributionCountRef = admin . database ( ) . ref ( '/v2/users/' + context . params . userId + '/projectContributionCount' )
4239 const projectContributionsRef = admin . database ( ) . ref ( '/v2/users/' + context . params . userId + '/contributions/' + context . params . projectId )
4340 const groupContributionsRef = admin . database ( ) . ref ( '/v2/users/' + context . params . userId + '/contributions/' + context . params . projectId + '/' + context . params . groupId )
4441 const projectTaskContributionCountRef = admin . database ( ) . ref ( '/v2/users/' + context . params . userId + '/contributions/' + context . params . projectId + '/taskContributionCount' )
You can’t perform that action at this time.
0 commit comments