From 8b233a8eb29209f72db575c183ed096fd5ced98a Mon Sep 17 00:00:00 2001 From: Vinayak Goyal <73058928+ivinayakg@users.noreply.github.com> Date: Tue, 4 Oct 2022 01:27:36 +0530 Subject: [PATCH] update task model The new functionality of tracking the percent completed of a given task was not covered by the current task model. --- tasks/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/README.md b/tasks/README.md index 57bdd0e..d400c53 100644 --- a/tasks/README.md +++ b/tasks/README.md @@ -25,6 +25,7 @@ Firestore Tasks collection data model createdBy: string, assignee: string, participants: [userId, userId] + percentCompleted : number } -``` \ No newline at end of file +```