diff --git a/functions/src/route/voting.ts b/functions/src/route/voting.ts index 09cc481..6fd2dd0 100644 --- a/functions/src/route/voting.ts +++ b/functions/src/route/voting.ts @@ -4,8 +4,6 @@ import { getEntriesFromSnapshot, getVoteSnapshot, getVoteCounts, - getVoteEntry, - makeVoteEntry, updateVoteEntry, getVote, getActiveVote, @@ -42,14 +40,7 @@ const vote = async ( return {error: "Invalid vote index", code: 400}; } - const entry = await getVoteEntry(vote.ref, voter); - if (!entry) { - await makeVoteEntry(vote.ref, voter, voteIndex); - await updateVoteCount(); - return {success: true}; - } - - await updateVoteEntry(entry, voteIndex); + await updateVoteEntry(vote, voter, voteIndex); await updateVoteCount(); return {success: true}; }; diff --git a/functions/src/types/vote.ts b/functions/src/types/vote.ts index 7630f40..d4a12f6 100644 --- a/functions/src/types/vote.ts +++ b/functions/src/types/vote.ts @@ -43,10 +43,11 @@ export const getVoteEntry = async ( .where(usernameField, "==", username) .get() as QuerySnapshot).docs[0]?.ref; export const updateVoteEntry = async ( - vote: DocumentReference, + vote: DocumentSnapshot, + username: string, voteIndex: number ) => - vote.update({[voteIndexField]: voteIndex}); + vote.ref.collection(entriesCollectionName).doc(username).set({[voteIndexField]: voteIndex}); export const makeVoteEntry = async ( vote: DocumentReference, username: string,